如果是报这个错误,多半是你的对象类型没有被识别,检查是不是没有引用对应的库或者头文件在你的文件头部分,还有可能是循环引用导致的,循环引用的解决方法就是
Class A 中用import Class B
Class B的.h头文件里用@class A;
.m文件里再用import
二,EXC_BAD_ACCESS
首先说一下 EXC_BAD_ACCESS 这个错误,可以这么说,90%的错误来源在于对一个已经释放的对象进行release操作。
Objective-C 这段代码有三个致命问题:1、内存泄露;2、错误释放;3、造成 EXC_BAD_ACCESS 错误。
1, NSString* s = [[NSString alloc]initWithString:@”This is a test string”]; 创建了一个 NSString Object,随后的 s = [s substringFromIndex:[s rangeOfString:@"a"].location]; 执行后,导致创建的对象引用消失,直接造成内存泄露。
2,错误释放。[s release]; 这个问题,原因之一是一个逻辑错误,以为 s 还是我们最初创建的那个 NSString 对象。第二是因为从 substringFromIndex:(NSUInteger i) 这个方法返回的 NSString 对象,并不需要我们来释放,它其实是一个被 substringFromIndex 方法标记为 autorelease 的对象。如果我们强行的释放了它,那么会造成 EXC_BAD_ACCESS 问题。
3, EXC_BAD_ACCESS。由于 s 指向的 NSString 对象被标记为 autorelease, 则在 NSAutoreleasePool 中已有记录。但是由于我们在前面错误的释放了该对象,则当 [pool drain] 的时候,NSAutoreleasePool 又一次的对它记录的 s 对象调用了 release 方法,但这个时候 s 已经被释放不复存在,则直接导致了 EXC_BAD_ACCESS问题。
三:Implicit conversion of an Objective-C pointer to 'int *' is disallowed with ARC
这个就是自己写错了 int 不带指针。。。sb了
四:No unexpired provisioning profiles found that contain any of the keychain's singing certificates
此时需要检查下,
Organizer->Devices->Provisioning Profiles 中的App Identifier的com及之后部分是否与TARGETS->Summary->iOS Application Target->Bundle Identifier 相符,特别是后面的项目名称。
五:Incorrect NSStringEncoding value 0x0000 detected. Assuming NSASCIIStringEncoding. Will stop this compatiblity mapping behavior in the near future.
1:当一个字符串为null时,它不能被正常地使用,否则会报如下错误
错误案例:当nstrPublicUrl==null时,如果我们写下如下代码,就会报如上警告。
//错误的案例,nstrPublicUrl==nil时
NSString *nstrUrl = [NSString stringWithFormat:@"%@%@",nstrPublicUrl,ACCOUNT_URL];
说编码问题的
request.defaultResponseEncoding = NSUTF8StringEncoding
说超时的
request.timeOutSeconds=60;
说数据太大的
反正都没大的效果
六:[NSUserDefaults setObject:forKey:]: Attempt to insert non-property value '<UIImage: 0x72999e0>' of class 'UIImage'. Note that dictionaries and arrays in property lists must also contain only property values.
NSUserDefault can only store property listed values. 只能保存指定的类型比如NSData、NSString、NSNumber、NSDate、NSArray、NSDictionary如果你要保存其他类型或者自定义类型需要用到archiver. 自己需要写encode和decode两个method
参考:http://blog.csdn.net/sjx19871225/article/details/8589204
七:pngcrush caught libpng error,Not a PNG file Could not find file
While reading /XXX/XXX/XXX/img1.png pngcrush caught libpng error: Not a PNG filCould not find file: /Users/XXX/Library/Developer/Xcode/DerivedData/CookBookDemo-cnttcobrbmvbddeiesgsxnfwihfe/Build/Products/Debug-iphoneos/CookBookDemo.app/img1.pngCommand /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/copypng emitted errors but did not return a nonzero exit code to indicate failure