ringa_lee2017-04-18 09:46:49
for in 遍歷不要做修改 被遍歷的陣列。推薦改成 array enumerateObjectsUsingBlock…方式遍歷,這個可以修改不會crash,遇到同樣的問題
迷茫2017-04-18 09:46:49
HCFavoriteIconView
没有nodeIndex
, 或者你把nodeIndex
发给了不存在这个方法的对象0x7e3930e0
, 可以用category調試原因:
@interface NSObject(testing)
- (NSString *)nodeIndex;
@end
@implementation NSObject(testing)
- (NSString *)nodeIndex{
NSAssert(NO, @"class %@ has no method of nodeIndex", [self class]);
return nil;
}
@end
阿神2017-04-18 09:46:49
控制台輸出顯示[HCFavoriteIconView nodeIndex]說明HCFavoriteIconView存取不到這個nodeIndex,首先確認你的物件的nodeIndex都存在。