http://stackoverflow.com/questions/7991086/iphone-core-animation-drawing-a-circle// Set up the shape of the circleint radius = 100;CAShapeLayer *circl...
分类:
移动开发 时间:
2014-07-01 22:36:06
阅读次数:
679
ios4 设备上最好就不要使用 ARC。。。strong,weak 用来修饰属性。strong 用来修饰强引用的属性;@property (strong) SomeClass * aObject;对应原来的@property (retain) SomeClass * aObject; 和 @prop...
分类:
其他好文 时间:
2014-07-01 22:32:05
阅读次数:
296
简要分析一下build.prop是如何生成的。Android的build.prop文件是在Android编译时收集的各种property(LCD density/语言/编译时间, etc.),编译完成之后,文件生成在out/target/product//system/目录下。在Android运行时...
分类:
移动开发 时间:
2014-07-01 16:56:01
阅读次数:
515
在为Fragment做切换动画,启动后遇到了一个异常:
Caused by: java.lang.RuntimeException: Unknown animation name: objectAnimator
截图如下:
我的代码如下:
fragment = Fragment.instantiate(getActivity(), clz.getName());...
分类:
移动开发 时间:
2014-07-01 14:33:01
阅读次数:
332
#import "MainViewController.h"
#import "Video.h"
#define kBaseURL @"http://192.168.3.252/~apple"
@interface MainViewController ()
@property (strong, nonatomic) NSArray *dataList;
@property (weak, no...
分类:
移动开发 时间:
2014-07-01 11:32:17
阅读次数:
238
一、实现下载文件进度控制1.代码示例 1 #import "YYViewController.h" 2 3 @interface YYViewController () 4 @property(nonatomic,strong)NSMutableData *fileData; 5 @pr...
分类:
移动开发 时间:
2014-07-01 10:36:39
阅读次数:
228
可以检查参数,一直没注意这个语言特性,忽略了很多细节,感谢 vitrox
class Person( object ):
def __init__( self, name ):
if not isinstance( name, str ):
raise TypeError( '...' )
else:...
分类:
编程语言 时间:
2014-07-01 10:00:34
阅读次数:
181
定义一个UIView:主要是在这个View里面加一个UIImageView,画图都在这个UIImageView里面进行
@property(nonatomic) CGPoint prePoint; //手指在进入move事件之前的那个点
@property(nonatomic) CGPoint oppsitePoint; //手指在进入move事件之前的那个点
@property(nonat...
分类:
移动开发 时间:
2014-07-01 09:04:36
阅读次数:
359
android property,相信各位android平台的开发人员用到的不会少,但是property的具体机制大家可能知道的不多,这里利用空闲时间大致了解了一些,特此分享跟大家,如有谬误,欢迎指正
android 1号进程进程init进程在开机的时候就会调用property_init函数,至于init是怎么起来的,这里不是重点,所以暂时先不介绍,property_init的具体flo...
分类:
移动开发 时间:
2014-07-01 08:25:58
阅读次数:
484
本页中列出Server application中对象和事件的详细资料。要了解如何建立一个服务应用,以及想知道它的工作流程,请阅读Server application。
对象
通用概念
属性
如下属性操作有效
value = object.property
方法
方法按照如下方式调用:
results = object:method(arguments)
事件
某些对...