#import <Foundation/Foundation.h> #import <AVFoundation/AVFoundation.h> @interface Speaker : NSObject @property(nonatomic,strong)AVSpeechSynthesizer * ...
分类:
其他好文 时间:
2017-08-29 18:53:49
阅读次数:
206
// Person.h #import @interface Person : NSObject @property (nonatomic, assign) int age; @end // Person.m #import "Person.h" @implementation Person - (... ...
分类:
编程语言 时间:
2017-08-27 17:03:48
阅读次数:
154
// // main.m // Category基本使用:1.不修改类而扩充类。2.对于一个庞大的类,分模块开发。 #import #import "Person.h" #import "Person+NJ.h" /* 方法: 方法的声明: 方法的实现: 所以: 通过分类给某一个类扩充方法, 也分为... ...
分类:
其他好文 时间:
2017-08-26 19:41:49
阅读次数:
133
// // Person.h #import #import "Room.h" #import "Car.h" #import "Dog.h" @interface Person : NSObject { Room *_room; Car *_car; Dog *_dog; } /* - (void... ...
分类:
其他好文 时间:
2017-08-25 14:52:52
阅读次数:
161
/* iOS序列化,将对象转成二进制,保存到本地 */ 定义一个对象,让它实现NSCoding协议,保证对象的编码和解码,person有三个属性 @interface Person : NSObject <NSCoding>@property (nonatomic, copy) NSString * ...
分类:
其他好文 时间:
2017-08-24 12:35:01
阅读次数:
165
在cell.h定义 @property(nonatomic,strong)void(^pushType)(NSInteger); 在cell.m按钮点击时 _pushType(1);(举例) 在用到cell的tableView中 cell.pushType=^(NSInteger index){ i ...
分类:
其他好文 时间:
2017-08-22 10:44:58
阅读次数:
164
static int i = 29; @property(nonatomic,strong) NSTimer *timmer;//定时器 - (void)sendNumber{ NSLog(@"发送验证码"); self.getTelephoneCodeBtn.enabled = NO; [self... ...
分类:
其他好文 时间:
2017-08-21 23:03:18
阅读次数:
421
1.模型 @class FriendsModel; @interface GroupModel : NSObject @property (nonatomic, copy) NSString *name; @property (nonatomic, copy) NSString *online; @ ...
分类:
其他好文 时间:
2017-08-18 20:06:22
阅读次数:
157
@property (nonatomic,strong) NSArray *imageData;//定义一个数组 -(NSArray *)imageDate { if(_imageDate==nil) { NSMutableDictionary *image1=[NSMutableDictionar... ...
分类:
移动开发 时间:
2017-08-18 20:05:28
阅读次数:
280
@property (nonatomic,strong) NSArray *imageData;//定义一个数组 //懒加载数据 -(NSArray *)imageDate { if(_imageDate==nil) { NSBundle *bundle=[NSBundle mainBundle];... ...
分类:
移动开发 时间:
2017-08-18 19:51:03
阅读次数:
265