码迷,mamicode.com
首页 >  
搜索关键字:nonatomic    ( 1690个结果
UIButton的titleLabel
UIButton的titleLabel@property(nonatomic, readonly, retain) UILabel *titleLabelDescription - 描述A view that displays the value of the currentTitle proper...
分类:其他好文   时间:2014-06-18 09:08:25    阅读次数:160
OC-内存管理的一些要点
创建一个BOOK对象,对其属性进行声明 定义。 @property 属性声明 定义了对属性的赋值  -(void) dealloc 方法在对象销毁的时候进行调用; #import @interface Book : NSObject @property (nonatomic,assign) int price; @end #import "Book.h" @imp...
分类:其他好文   时间:2014-06-16 12:05:04    阅读次数:271
NSUserDefault 保存自定义对象
由于NSUserDefaults 不支持保存自定类,保存的对象需要实现NSCoding协议,不过自定的类型就算实现了NSCoding也不可以保存,可以通过以下方法实现://h文件#import @interface People : NSObject@property(nonatomic,copy)...
分类:其他好文   时间:2014-06-13 17:17:52    阅读次数:177
gcd
@property (nonatomic) dispatch_semaphore_t semaphore;self.semaphore = dispatch_semaphore_create([self.progressViews count]);dispatch_semaphore_wait(se...
分类:其他好文   时间:2014-06-11 12:51:06    阅读次数:264
IOS学习笔记 -- Segue、数据存储、UITabBarController
一. Segue1.Storyboard上每一根用来界面跳转的线,都是一个UIStoryboardSegue对象(简称Segue)每一个Segue对象,都有3个属性1>.唯一标识: @property (nonatomic, readonly) NSString *identifier;2>.来源控...
分类:移动开发   时间:2014-06-09 21:52:37    阅读次数:490
学习IOS开发UI篇--程序启动原理
ios程序启动过程 UIApplication:1.每一个应用都有自己的UIApplication对象,而且是单例的,通过[UIApplication sharedApplication]可以获得这个单例对象.2.UIApplication的常用属性:@property(nonatomic) ...
分类:移动开发   时间:2014-06-08 22:52:23    阅读次数:411
iOS.TextKit.01.凸版印刷效果
1、案例视图,如下图2、代码TextKit01ViewController.h#import @interface TextKit01ViewController : UIViewController@property (nonatomic,strong) IBOutlet UITextView *...
分类:移动开发   时间:2014-06-08 19:03:04    阅读次数:382
iOS.TextKit.02.文字图片混合排版
1、案例如图2、代码TextKit02ViewController.h#import @interface TextKit02ViewController : UIViewController@property (nonatomic,strong) IBOutlet UITextView *text...
分类:移动开发   时间:2014-06-08 18:53:35    阅读次数:558
对于ios7扫描二维码功能的实现
在ios7以前,我们开发二维码扫描,或者生产都需要借助第三方的开源库进行开发。 然后升级到ios7时,在passbook中苹果自带二维码扫描功能,而且扫描速度非常快,秒杀一切第三方开源库。所以,我们做二维码的开发选用自带sdk优先级应该高于其他的库。 说到二维码的开发,我们需要用到这两个对象。如下。。 @property (nonatomic, strong) AVCaptureS...
分类:移动开发   时间:2014-06-08 09:04:05    阅读次数:232
使用ARC也可能发生内存泄露
1,循环参照A有个属性参照B,B有个属性参照A,如果都是strong参照的话,两个对象都无法释放。这种问题常发生于把delegate声明为strong属性了。例,@interface SampleViewController@property (nonatomic, strong) SampleCl...
分类:其他好文   时间:2014-06-07 23:40:44    阅读次数:366
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!