上一页 1 ··· 6 7 8 9 10 11 下一页
摘要: // 实现文件:声明在对应的.h文件。继承至UIViewControllor - (void)viewDidLoad { [super viewDidLoad]; // 按钮 self.stp = [[UIStepper alloc] initWithFrame:CGRectMake(20, 30, 阅读全文
posted @ 2016-03-09 22:45 pruple_Boy 阅读(242) 评论(0) 推荐(0) 编辑
摘要: // 写在继承于UIViewController的子类中:创建单视图默认有ViewController类 // 实现:点击任何一颗UIButton,它四周的以及它自身都被变成红色,再点击就会变成原来的灰色 - (void)viewDidLoad { [super viewDidLoad]; NSIn 阅读全文
posted @ 2016-03-08 20:35 pruple_Boy 阅读(205) 评论(0) 推荐(0) 编辑
摘要: - (NSArray *)testa:(NSDictionary *)dic { NSMutableArray *arr_M = [NSMutableArray array]; // 1.遍历每一个元素添加到集合 for (NSString *key in dic.allKeys) { for (N 阅读全文
posted @ 2016-03-07 22:45 pruple_Boy 阅读(523) 评论(0) 推荐(0) 编辑
摘要: // 为集合字符串排序(cmpare:) // - null :空类型 就是字符型的0; // - [NSNull null]是对象类型,能够存入集合的数据:为其分配了内存,但其中的值为空(不能被排序否则程序会崩溃); // - 对非对象类型指针赋空值用null(如C指针) // 对集合内的字符串排 阅读全文
posted @ 2016-03-07 22:26 pruple_Boy 阅读(416) 评论(0) 推荐(0) 编辑
摘要: NSDictionary *dic = @{@"name":@"yj", @"age":@"24", @"hobby":@"game"}; NSMutableDictionary *dic_M = [NSMutableDictionary dictionary]; // 字典添加字典 [dic_M 阅读全文
posted @ 2016-03-07 22:24 pruple_Boy 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 2.import和class 阅读全文
posted @ 2016-03-05 20:11 pruple_Boy 阅读(440) 评论(0) 推荐(0) 编辑
摘要: 为block类型对象取别名 1.没有使用typedef的情况 int (^block_add)(int, int) = ^(int value1, int value2) { return value1 + value2; }; NSLog(@"%i", block_add (10, 20)); 2 阅读全文
posted @ 2016-03-04 14:00 pruple_Boy 阅读(221) 评论(0) 推荐(0) 编辑
摘要: // Person复合了Phone和Room // 第一种:比较合理 先判断对象形参传递的对象和原属性是否一致,不一致在释放旧值,给形参传递的值retain,因为retain方法会返回该对象,因此可以直接接收 - (void)setPhone:(Phone *)phone { if (phone ! 阅读全文
posted @ 2016-03-03 21:40 pruple_Boy 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 三点用法总结: 类型转换:基本类型到对象类型 需要调用NSString的fotmat方法 NSString *location = [NSString stringWithFormat:@"location = %i ,2]; 连续定义 字符串接字符串,或者基本类型的转换(红色的下面是橙色) NSS 阅读全文
posted @ 2016-03-02 17:53 pruple_Boy 阅读(938) 评论(0) 推荐(0) 编辑
摘要: 2.关于NSNumber对C语言字符的简写 - 简写:对字符串进行操作返回的是NSString类型 NSLog(@"%@", @("purple")); > 相当于调用传递C字符串转换为OC字符串的类方法 NSLog(@"%@", [NSString stringWithUTF8String:"Bl 阅读全文
posted @ 2016-03-02 12:57 pruple_Boy 阅读(287) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 下一页