码迷,mamicode.com
首页 >  
搜索关键字:nonatomic    ( 1690个结果
Reachability用于在任何地方判断网络是否可用
#import #import "Reachability.h" @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; @property (strong, nonatomic) Reachability *reach; @end #import "AppDele...
分类:其他好文   时间:2014-09-25 13:08:49    阅读次数:315
记录一些容易忘记的属性 -- UITabBarController
UIViewController中的 @property(nonatomic,copy) NSString *title; // Localized title for use by a parent controller.,仔细理解英文注释的意思下面是Title的实际作用 //创建给分栏控制器.....
分类:其他好文   时间:2014-09-24 23:55:57    阅读次数:201
UIViewController 的属性presentingViewController
// The view controller that presented this view controller (or its farthest ancestor.) @property(nonatomic,readonly) UIViewController *presentingViewController NS_AVAILABLE_IOS(5_0); a present b...
分类:其他好文   时间:2014-09-23 17:35:05    阅读次数:248
UITapGestureRecognizer
Configuring the Gesture@property(nonatomic) NSUInteger numberOfTapsRequired@property(nonatomic) NSUInteger numberOfTouchesRequired例子 // 单击的 Recogni...
分类:其他好文   时间:2014-09-22 23:43:03    阅读次数:362
UIPinchGestureRecognizer UIRotationGestureRecognizer
UIPinchGestureRecognizer@property(nonatomic) CGFloat scale@property(nonatomic, readonly) CGFloat velocityUIRotationGestureRecognizer@property(nonatomi...
分类:其他好文   时间:2014-09-22 21:02:03    阅读次数:167
UIPanGestureRecognizer
Configuring the Gesture Recognizer@property(nonatomic) NSUInteger maximumNumberOfTouches//The maximum number of fingers that can be touching the view ...
分类:其他好文   时间:2014-09-22 19:04:23    阅读次数:241
CBCharacteristic
Identifying a Characteristic@property(readonly, nonatomic) CBUUID *UUID@property(weak, readonly, nonatomic) CBService *serviceAccessing Characteristic...
分类:其他好文   时间:2014-09-20 20:23:59    阅读次数:176
MKMapView
Accessing Map Properties@property(nonatomic)MKMapTypemapType@property(nonatomic,getter=isZoomEnabled)BOOLzoomEnabled@property(nonatomic,getter=isScrol...
分类:其他好文   时间:2014-09-18 16:08:34    阅读次数:387
简单计算器
#import "ViewController.h"@interface ViewController (){ char op1; NSString *op3, *op4;}@property (weak, nonatomic) IBOutlet UILabel *resultLabe...
分类:其他好文   时间:2014-09-17 21:45:22    阅读次数:218
计算器(可累加,可清零)
#import "ViewController.h"@interface ViewController ()@property (weak, nonatomic) IBOutlet UILabel *resultLabel;@end NSString *op1,*op2,*result; ch...
分类:其他好文   时间:2014-09-17 21:43:52    阅读次数:344
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!