摘要: - (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) 编辑