ios遇到的bug记录

第三方库集成

百度

缺少bundle display name的提示


不在项目中修改文件

导致missing file


使用命令行删除所有的.svn文件

sudo find /Users/apple/Documents/已完成项目/PJZJ/pjw178/  -name ".svn"  -exec rm  -r {} \;


数组越界

可以参考我写的另一篇博客中第一条进行定位处理

http://my.oschina.net/u/2360054/blog/606844#OSC_h2_1


如下代码会产生一个数组越界的错误

NSArray *array=@[@"1",@"2"];
NSString *string=array[2];


Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayI objectAtIndex:]: index 2 beyond bounds [0 .. 1]'



加入集合元素为空

NSMutableArray *array=[NSMutableArray array];
NSString *string;
[array addObject:string];

//以上代码会报错,因为string为nil

*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSArrayM insertObject:atIndex:]: object cannot be nil'
 NSString *string;
 NSDictionary *dict=@{@"key1":string};


*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSPlaceholderDictionary initWithObjects:forKeys:count:]: attempt to insert nil object from objects[0]'


网络请求

不支持text解析

json解析错误

非法开始数字 02, 非常蛋疼




404错误

检查网址吧,尝试http测试工具。可能是网址错误或者服务器挂了


视频截图导致的内存不断增加

-(UIImage *)imageAtTime:(float)time asset:(AVURLAsset *)avAsset{
    CMTimeScale timeScale=avAsset.duration.timescale;
    AVAssetImageGenerator *gen = [[AVAssetImageGenerator alloc] initWithAsset:avAsset];
    
    gen.appliesPreferredTrackTransform = YES;
    CMTime imageTime ;
    float vedioTime=CMTimeGetSeconds(avAsset.duration);
    
    if (time>CMTimeGetSeconds(avAsset.duration)) {
        imageTime=CMTimeMakeWithSeconds(avAsset.duration.value,timeScale);
    }else{
        imageTime = CMTimeMakeWithSeconds(time, timeScale);
    }
    NSError *error = nil;
    CMTime actualTime;
    CGImageRef image = [gen copyCGImageAtTime:imageTime actualTime:NULL error:&error];
    UIImage *thumb = [[UIImage alloc] initWithCGImage:image];
    if (error) {
        NSLog(@"error%@",error);
    }
  
    
    return thumb;
}



没有明显的报错信息,就是每次执行完这个语句,内存就会不断增加。

在处理图片完成后需要加入 CFRealease释放内存

 CFRelease(image);


tableview cell 标示符重复


数据类型转换错误

你可能感兴趣的:(ios遇到的bug记录)