码迷,mamicode.com
首页 >  
搜索关键字:objectatindex    ( 88个结果
NSMutableRLEArray objectAtIndex:effectiveRange:: Out of bounds
Bugly: Trapped uncaught exception 'NSRangeException', reason: 'NSMutableRLEArray objectAtIndex:effectiveRange:: Out of bounds'(0 CoreFoundation 0x0000 ...
分类:其他好文   时间:2016-07-29 16:24:27    阅读次数:1357
oc block 遍历数组及字典
原遍历数组NSArray * lines = ...for (NSString * line in lines) { // ...}for (int i = 0; i < lines.count; ++i) { NSString * s = [lines objectAtIndex:i]; ...} ...
分类:编程语言   时间:2016-07-13 10:27:04    阅读次数:220
iOS plist
//存 NSArray *paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES); NSString *path=[paths objectAtIndex:0]; NSLog(@"path ...
分类:移动开发   时间:2016-05-27 14:29:48    阅读次数:189
iOS--对plist文件进行读写,增删改查
对plist文件进行读写//获取路径对象 NSArray *pathArray = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *path = [pathArray objectAtIndex:0]; //获取文件的完整路径 NSS...
分类:移动开发   时间:2016-05-12 16:02:53    阅读次数:303
学习iOS【3】数组、词典和集合
一、数组 1.不可变数组NSArray arrayWithObjects:使用一组对象作为元素创建不可变数组,注意数组的最后一个值需要指定为nil,用来表示参数的结束,但是nil并不会存储在数组中。 objectAtIndex:获取指定索引位置的数组元素。 @[elm1,elm2….elmn]:另外 ...
分类:移动开发   时间:2016-05-06 23:27:13    阅读次数:277
分享一下自己ios开发笔记
// ********************** 判断数组元素是否为空 ********************** NSString *element = [array objectAtIndex:2]; if ((NSNull *)element == [NSNull null]) { } 今天做项目的时候就遇到,要判断数组元素是否为空,我的以下写法,都无效 if(!element...
分类:移动开发   时间:2016-04-20 10:02:44    阅读次数:522
plist 文件读写
//1. 创建一个plist文件 NSArray *paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES); NSString *path=[paths objectAtIndex:0]; ...
分类:其他好文   时间:2016-04-17 00:34:35    阅读次数:162
关于灰度层的show、hide
原理图如下: - (void)show{ UIWindow *win = [[UIApplication sharedApplication] keyWindow]; UIView *topView = [win.subviews objectAtIndex:0]; [topView addSubv ...
分类:其他好文   时间:2016-04-01 20:20:27    阅读次数:125
【解决方法】iOS 开发小技巧
1,Search Bar 怎样去掉背景的颜色(storyboard里只能设置background颜色,可是发现clear Color无法使用)。 其实在代码里还是可以设置的,那就是删除背景view [[self.searchBar.subviews objectAtIndex:0] removeFromSuperview]; 2,NSDate: ...
分类:移动开发   时间:2016-03-03 23:05:30    阅读次数:2104
dSYM文件
来到新公司后,前段时间就一直在忙,前不久 项目 终于成功发布上线了,最近就在给项目做优化,并排除一些线上软件的 bug,因为项目中使用了友盟统计,所以在友盟给出的错误信息统计中能比较方便的找出客户端异常的信息,可是很多像数组越界却只给出了 *** -[__NSArrayM objectAtIndex
分类:其他好文   时间:2016-02-29 23:00:03    阅读次数:239
88条   上一页 1 2 3 4 ... 9 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!