1,数组中访问元素或者对象的方法是?objectAtindex 2,数组中访问元素的语法糖? 数组对象[下标] 3,字典中访问value的方法是?objectForKey 4,字典访问值得语法糖?字典对象[key] 5,三种便利方式分别是 for循环 数组循环 集合循环 6,枚举器 NSArray
分类:
编程语言 时间:
2016-02-24 20:45:59
阅读次数:
159
1、写入(本地) NSArray *paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *path=[paths objectAtIndex:0]; NSStr
分类:
移动开发 时间:
2016-02-22 17:27:56
阅读次数:
187
UILabel *downloader = [[UILabel alloc]init]; NSString *downloadCount = [[LibraryArr objectAtIndex:indexPath.row]objectForKey:@"downloadCou...
分类:
其他好文 时间:
2016-01-19 12:16:58
阅读次数:
132
//数组的遍历(枚举)对集合中的元素依次不重复的遍历 //1.下标遍历 for (int i=0;i<[week count];i++) { NSString *str=[week objectAtIndex:i]; NSLog(@"%@",str);//week[i...
分类:
编程语言 时间:
2016-01-07 16:42:09
阅读次数:
219
NSArray* Array;//此时数组没有初始化,数组=nil [Array objectAtIndex:2];//不会调用其属性方法,这里不会崩溃 NSMutableArray *MutableArray=[[NSMutableArray alloc]init];//此时数组被初始化...
分类:
其他好文 时间:
2015-12-09 11:56:12
阅读次数:
174
归档失败问题出在路径上,NSHomeDirectory()NSString *stringPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex: 0]...
分类:
移动开发 时间:
2015-12-03 13:23:52
阅读次数:
145
1,Search Bar 怎样去掉背景的颜色(storyboard里只能设置background颜色,可是发现clear Color无法使用)其实在代码里还是可以设置的,那就是删除背景view[[self.searchBar.subviews objectAtIndex:0] removeFromS...
分类:
其他好文 时间:
2015-11-25 13:35:34
阅读次数:
248
NSDictionary * d=@{@"name":@"zefeng"}; NSString * name =[[d allKeys]objectAtIndex:0]; [self presentViewController:[[NSClassFromString(name) alloc]init...
分类:
其他好文 时间:
2015-11-23 18:55:21
阅读次数:
135
1,Search Bar 怎样去掉背景的颜色(storyboard里只能设置background颜色,可是发现clear Color无法使用)其实在代码里还是可以设置的,那就是删除背景view[[self.searchBar.subviews objectAtIndex:0] removeFromS...
分类:
移动开发 时间:
2015-11-23 18:25:39
阅读次数:
282
NSDictionary *attributes = @{NSFontAttributeName: [UIFont fontWithName:@"HelveticaNeue" size:14.0f]};CGSize size = [[[array objectAtIndex:indexPath.ro...
分类:
其他好文 时间:
2015-11-19 18:40:04
阅读次数:
143