所以我有一个观点,我把它放在另一个 .xib 文件中。它也有自己的 .h/.m 文件。
我试图在我的 mainViewController 中分配它的一个实例,我不断得到:
Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<XXX 0x1c556390> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key XXX
我正在使用以下代码
NSArray* nibViews = [[NSBundle mainBundle] loadNibNamed:@"SubviewClass"
owner:self
options:nil];
self.subview = (SubviewClass *)[nibViews objectAtIndex:0];
self.subview.frame = CGRectMake(82, 182, 155, 96);
[self.view addSubview:self.subview];
但是它一直在第一行崩溃。