所以我有一種觀點,我把它放在另一個.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];
但是它總是崩潰的第一行。
我知道我的代碼是正確的存在洛爾。認爲這是xcode中的一個錯誤,因爲我斷開了連接,然後重新連接了它,並修復了它自己。 – endy