由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:[LeavesCache setDataSource:]:无法识别的选择器发送到实例 0x7db1f30
添加了异常断点,发现问题出在这一行
pageCache = [[LeavesCache alloc] initWithPageSize:self.bounds.size];
- (void) initialize {
backgroundRendering = NO;
pageCache = [[LeavesCache alloc] initWithPageSize:self.bounds.size];
}
- (id) initWithPageSize:(CGSize)aPageSize
{
if (self = [super init]) {
pageSize = aPageSize;
pageCache = [[NSMutableDictionary alloc] init];
}
return self;
}
- (void) setDataSource:(id<LeavesViewDataSource>)value {
pageCache.dataSource = value;
}
如果有人可以帮助我,不知道如何解决这个问题