码迷,mamicode.com
首页 >  
搜索关键字:objectatindex    ( 88个结果
OC7(遍历集合,数组排序)
1,数组中访问元素或者对象的方法是?objectAtindex 2,数组中访问元素的语法糖? 数组对象[下标] 3,字典中访问value的方法是?objectForKey 4,字典访问值得语法糖?字典对象[key] 5,三种便利方式分别是 for循环 数组循环 集合循环 6,枚举器 NSArray
分类:编程语言   时间:2016-02-24 20:45:59    阅读次数:159
iOS中 JSON格式文件的写入和读取
1、写入(本地) NSArray *paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *path=[paths objectAtIndex:0]; NSStr
分类:移动开发   时间:2016-02-22 17:27:56    阅读次数:187
OC——UIlabel text的常规应用
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 NSMutableArray 初始化
NSArray* Array;//此时数组没有初始化,数组=nil [Array objectAtIndex:2];//不会调用其属性方法,这里不会崩溃 NSMutableArray *MutableArray=[[NSMutableArray alloc]init];//此时数组被初始化...
分类:其他好文   时间:2015-12-09 11:56:12    阅读次数:174
iOS archiveRootObject 归档失败问题
归档失败问题出在路径上,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
ios开发学习笔记
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
88条   上一页 1 2 3 4 5 ... 9 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!