Bugly: Trapped uncaught exception 'NSRangeException', reason: 'NSMutableRLEArray objectAtIndex:effectiveRange:: Out of bounds'(0 CoreFoundation 0x0000 ...
分类:
其他好文 时间:
2016-07-29 16:24:27
阅读次数:
1357
原遍历数组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
//存 NSArray *paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES); NSString *path=[paths objectAtIndex:0]; NSLog(@"path ...
分类:
移动开发 时间:
2016-05-27 14:29:48
阅读次数:
189
对plist文件进行读写//获取路径对象
NSArray *pathArray = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *path = [pathArray objectAtIndex:0];
//获取文件的完整路径
NSS...
分类:
移动开发 时间:
2016-05-12 16:02:53
阅读次数:
303
一、数组 1.不可变数组NSArray arrayWithObjects:使用一组对象作为元素创建不可变数组,注意数组的最后一个值需要指定为nil,用来表示参数的结束,但是nil并不会存储在数组中。 objectAtIndex:获取指定索引位置的数组元素。 @[elm1,elm2….elmn]:另外 ...
分类:
移动开发 时间:
2016-05-06 23:27:13
阅读次数:
277
// ********************** 判断数组元素是否为空 **********************
NSString *element = [array objectAtIndex:2];
if ((NSNull *)element == [NSNull null]) {
}
今天做项目的时候就遇到,要判断数组元素是否为空,我的以下写法,都无效
if(!element...
分类:
移动开发 时间:
2016-04-20 10:02:44
阅读次数:
522
//1. 创建一个plist文件 NSArray *paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES); NSString *path=[paths objectAtIndex:0]; ...
分类:
其他好文 时间:
2016-04-17 00:34:35
阅读次数:
162
原理图如下: - (void)show{ UIWindow *win = [[UIApplication sharedApplication] keyWindow]; UIView *topView = [win.subviews objectAtIndex:0]; [topView addSubv ...
分类:
其他好文 时间:
2016-04-01 20:20:27
阅读次数:
125
1,Search Bar 怎样去掉背景的颜色(storyboard里只能设置background颜色,可是发现clear Color无法使用)。
其实在代码里还是可以设置的,那就是删除背景view
[[self.searchBar.subviews objectAtIndex:0] removeFromSuperview];
2,NSDate:
...
分类:
移动开发 时间:
2016-03-03 23:05:30
阅读次数:
2104
来到新公司后,前段时间就一直在忙,前不久 项目 终于成功发布上线了,最近就在给项目做优化,并排除一些线上软件的 bug,因为项目中使用了友盟统计,所以在友盟给出的错误信息统计中能比较方便的找出客户端异常的信息,可是很多像数组越界却只给出了 *** -[__NSArrayM objectAtIndex
分类:
其他好文 时间:
2016-02-29 23:00:03
阅读次数:
239