默认情况下,对象属性是strong的,标量属性是assign的。但是有一个例外,就是对于具有可变副本的属性,我们倾向于将其声明为copy。比如说@interface
Person : NSObject@property (nonatomic,copy) NSString* name; @proper...
分类:
其他好文 时间:
2014-06-29 07:54:44
阅读次数:
444
?UINavigationController以栈的形式保存子控制器@property(nonatomic,copy)NSArray*viewControllers;@property(nonatomic,readonly)NSArray*childViewControllers;?使用push方法...
分类:
其他好文 时间:
2014-06-06 20:03:23
阅读次数:
310
1、案例介绍:表视图中单元格的增加、删除、移动,如图01,02图01图022、.h#import @interface CQ26ViewController :
UIViewController@property (weak,nonatomic) IBOutlet UINavigationItem ...
分类:
移动开发 时间:
2014-06-06 14:21:33
阅读次数:
340
[iOS] Error Fixed : [__NSArrayI addObject:]:
unrecognized selector sent to instance当我创建了一个NSMutableArray
对象的时候@property(nonatomic,copy)NSMutableArray*...
分类:
其他好文 时间:
2014-06-06 08:18:29
阅读次数:
291
AFNetworking 2.0 当Deployment Target
低于6.0时,AFURLConnectionOperation.h,AFURLSessionManager.h
@property(nonatomic, strong) dispatch_queue_t completionQueue;
由于sdk低于6.0时,dispatch_queue_t ARC没有托...
分类:
Web程序 时间:
2014-06-05 11:41:18
阅读次数:
286
很多应用在修改密码或者是更改个人信息时,需要用户输入手机验证码,其间有个等待过程,一般为60秒,等待结束后可以重新点击按钮获取新的验证码,在页面来回跳转之后又可以重新计时,简要做以下整理:
在.h文件中声明计时器
@interface LinViewController : UIViewController
@property (strong, nonatomic) UIButton * b...
分类:
其他好文 时间:
2014-06-05 04:41:37
阅读次数:
275
#import "KUViewController.h"#import
"KUProgress.h"@interfaceKUViewController ()//下载进度的类,继承UIview@property (weak,
nonatomic) IBOutlet KUProgress *progr...
分类:
其他好文 时间:
2014-06-04 14:39:23
阅读次数:
328
UILabel:常用属性@property(nonatomic,copy) NSString
*text; // default is nil@property(nonatomic,retain) UIFont *font; // default
is...
分类:
移动开发 时间:
2014-06-02 00:03:51
阅读次数:
432
UIScrollView:常用属性@property(nonatomic)
UIEdgeInsets contentInset; // default UIEdgeInsetsZero. add additional scroll
area around content@prop...
分类:
移动开发 时间:
2014-06-01 23:53:28
阅读次数:
505
UITabelView:常用属性@property (nonatomic) CGFloat
rowHeight; // will return the default value if unset@property (nonatomic)
CGFloat sect...
分类:
移动开发 时间:
2014-06-01 17:07:41
阅读次数:
394