码迷,mamicode.com
首页 >  
搜索关键字:nonatomic    ( 1690个结果
属性细节
默认情况下,对象属性是strong的,标量属性是assign的。但是有一个例外,就是对于具有可变副本的属性,我们倾向于将其声明为copy。比如说@interface Person : NSObject@property (nonatomic,copy) NSString* name; @proper...
分类:其他好文   时间:2014-06-29 07:54:44    阅读次数:444
UINavigationController的子控制器
?UINavigationController以栈的形式保存子控制器@property(nonatomic,copy)NSArray*viewControllers;@property(nonatomic,readonly)NSArray*childViewControllers;?使用push方法...
分类:其他好文   时间:2014-06-06 20:03:23    阅读次数:310
iOS.UIKit.17.UITableView -- Cells Operation
1、案例介绍:表视图中单元格的增加、删除、移动,如图01,02图01图022、.h#import @interface CQ26ViewController : UIViewController@property (weak,nonatomic) IBOutlet UINavigationItem ...
分类:移动开发   时间:2014-06-06 14:21:33    阅读次数:340
unrecognized selector sent to instance
[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 编译不过的问题修复
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
利用put上传文件到服务器
#import "KUViewController.h"#import "KUProgress.h"@interfaceKUViewController ()//下载进度的类,继承UIview@property (weak, nonatomic) IBOutlet KUProgress *progr...
分类:其他好文   时间:2014-06-04 14:39:23    阅读次数:328
学习IOS开发UI篇--UI知识点总结(二) UILabel/UIImageView
UILabel:常用属性@property(nonatomic,copy) NSString *text; // default is nil@property(nonatomic,retain) UIFont *font; // default is...
分类:移动开发   时间:2014-06-02 00:03:51    阅读次数:432
学习IOS开发UI篇--UI知识点总结(三) UIScrollView/UIPageControl/NSTimer
UIScrollView:常用属性@property(nonatomic) UIEdgeInsets contentInset; // default UIEdgeInsetsZero. add additional scroll area around content@prop...
分类:移动开发   时间:2014-06-01 23:53:28    阅读次数:505
学习IOS开发UI篇--UI知识点总结(四) UITabelView/UITableViewCell
UITabelView:常用属性@property (nonatomic) CGFloat rowHeight; // will return the default value if unset@property (nonatomic) CGFloat sect...
分类:移动开发   时间:2014-06-01 17:07:41    阅读次数:394
1690条   上一页 1 ... 165 166 167 168 169 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!