第一步:导入头文件 #import?<CoreLocation/CoreLocation.h>
#import?<CoreLocation/CLLocationManagerDelegate.h> 第二步:设置代理 CLLocationManagerDelegate 第三步:创建一个属性 @property(nonatomic,?str...
分类:
移动开发 时间:
2014-08-16 21:13:21
阅读次数:
233
#import @interface UserContext : NSObject @property (nonatomic,copy) NSString *name;@property (nonatomic,copy) NSString *emial;+(id) shareUsercontext;...
分类:
移动开发 时间:
2014-08-16 19:42:00
阅读次数:
198
@interface Person : NSObject//retian : release 旧值,retain 新值@property(nonatomic,retain) Book *book;//copy:release旧值,copy 新值@property(nonatomic,retain) ...
分类:
其他好文 时间:
2014-08-16 16:20:50
阅读次数:
206
1 @property (retain, nonatomic) NSString *retainStr; 2 @property (copy, nonatomic) NSString *copyStr; 3 4 5 6 @property (retain, nonatomi...
分类:
移动开发 时间:
2014-08-16 09:40:20
阅读次数:
172
此次只做简单说明,不做代码演示!1>readwrite:同时生成get方法和set方法的声明和实现2>readonly:只生成get方法的声明和实现3>assign:set方法的实现是直接赋值,用于基本数据类型4>retain:set方法的实现是release旧值,retain新值,用于OC对象类型...
分类:
其他好文 时间:
2014-08-13 14:47:56
阅读次数:
198
1.属性readwrite,readonly,assign,retain,copy,nonatomic各是什么作用,在那种情况下用?readwrite是可读可写特性;需要生成getter方法和setter方法时readonly是只读特性只会生成getter方法 不会生成setter方法;不希望属性在...
分类:
移动开发 时间:
2014-08-13 12:36:46
阅读次数:
291
#import @interface APRoundedButton : UIButton@property (nonatomic, assign) int style;@end//// Created by Alberto Pasca on 27/02/14.// Copyright (c) .....
分类:
其他好文 时间:
2014-08-13 12:32:26
阅读次数:
212
@interface UIView : UIResponder/*** 通过一个frame来初始化一个UI控件*/- (id)initWithFrame:(CGRect)frame;// YES:能够跟用户进行交互@property(nonatomic,getter=isUserInteractio...
分类:
移动开发 时间:
2014-08-13 00:45:14
阅读次数:
276
copy与retain:1、copy其实是建立了一个相同的对象,而retain不是;2、copy是内容拷贝,retain是指针拷贝;3、copy是内容的拷贝,对于像NSString,的确是这样,但是如果copy的是一个NSArray呢?这时只是copy了指向array中相对应元素的指针.这便是所谓的"浅复制".4、copy的情况:NS..
分类:
其他好文 时间:
2014-08-12 17:42:15
阅读次数:
178
/*alertView.h*/#import@interfacealertView:UIViewController{//创建控件对象UIAlertView*iToast;}@property(nonatomic,retain)UIAlertView*iToast;//让警告框消失的方法-(void...
分类:
其他好文 时间:
2014-08-12 13:17:34
阅读次数:
251