摘要: //// 1.整数123456789,如何将这个整数的每一位数,从末位开始依次放入一个数组中,并将他们遍历出来// 2.如何将字符串@“abc123.xyz789”倒置// 3.将2013年05月05日转换成2013-05-05#import int main(int argc, const ... 阅读全文
posted @ 2016-01-11 13:07 纽伦堡幅度 阅读(130) 评论(0) 推荐(0) 编辑
摘要: #import int main(int argc, const char * argv[]) { @autoreleasepool {NSDictionary *dic1=@{@"name":@"小阳", @"class":@"IOS8", ... 阅读全文
posted @ 2016-01-11 13:06 纽伦堡幅度 阅读(124) 评论(0) 推荐(0) 编辑
摘要: #import int main(int argc, const char * argv[]) { @autoreleasepool {//把字典放到数组中 NSDictionary *dic1=@{@"name":@"小明", ... 阅读全文
posted @ 2016-01-11 13:05 纽伦堡幅度 阅读(122) 评论(0) 推荐(0) 编辑
摘要: #import int main(int argc, const char * argv[]) { @autoreleasepool {//可变字典创建 NSMutableDictionary *mudic=[[NSMutableDictionary alloc]initWith... 阅读全文
posted @ 2016-01-11 13:04 纽伦堡幅度 阅读(110) 评论(0) 推荐(0) 编辑
摘要: #import int main(int argc, const char * argv[]) { @autoreleasepool {//字典排序 NSDictionary *dic=@{@"1-1":@"02", @"1-... 阅读全文
posted @ 2016-01-11 13:04 纽伦堡幅度 阅读(130) 评论(0) 推荐(0) 编辑
摘要: /*字典:NSDictionary 1.存储数据使用 和数组区别:使用键值方式。无序 2.相当于我们使用字典通过目录来查找具体字的释义 3.用key-value的形式数据 value作用用来存储数据,key用来检索数据 4.cocoa中字典:可变/不可变 注意: 5.key通常是字符串对象,可以是... 阅读全文
posted @ 2016-01-11 12:55 纽伦堡幅度 阅读(235) 评论(0) 推荐(0) 编辑
摘要: #import int main(int argc, const char * argv[]) { @autoreleasepool {//数组排序 NSArray *arr=@[@"a",@"b",@"c",@"d",@"e",@"f",@"g"]; NSArra... 阅读全文
posted @ 2016-01-11 12:52 纽伦堡幅度 阅读(104) 评论(0) 推荐(0) 编辑
摘要: #import int main(int argc, const char * argv[]) { @autoreleasepool {//可变数组继承不可变数组 //1.创建 设定元素个数进行创建 NSMutableArray *arr=[NSMutableArray a... 阅读全文
posted @ 2016-01-11 12:51 纽伦堡幅度 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 1 #import 2 3 int main(int argc, const char * argv[]) { 4 @autoreleasepool { 5 //对集合中的元素依次不重复的进行遍历 6 NSArray *arr=@[@"MON",@"TUE",@"WED... 阅读全文
posted @ 2016-01-11 12:50 纽伦堡幅度 阅读(171) 评论(0) 推荐(0) 编辑
摘要: #import int main(int argc, const char * argv[]) { @autoreleasepool {//数组创建 //1.快速创建 NSArray *week=@[@"MON",@"TUE",@"WED",@"THU",@"FRI",@"SAT",@"S... 阅读全文
posted @ 2016-01-11 10:35 纽伦堡幅度 阅读(121) 评论(0) 推荐(0) 编辑