我有一个 UIImageView 子类为 CLImageView 已通过延迟加载实现。
刚才我遇到了这个错误信息:
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Exercised class for selector implementation needs to be pushed'
*** First throw call stack:
在行: if(self=[super initWithCoder:aDecoder]) {
- (instancetype)initWithCoder:(NSCoder *)aDecoder{
if(self=[super initWithCoder:aDecoder]){
self.placeholderImage = nil;
self.delegate = nil;
self.cacheEnabled = NO;
self.prettyLoad = NO;
}return self;
}
直到 5 年的 iOS 编程,我才看到这个错误,我在这里找不到关于这种消息的任何信息。
如果有人能给我一些想法,将不胜感激。
如果您需要更多信息,请发表评论或回复。
太感谢了。