我在learncontroller.h中使用它
IBOutlet UIView *splashView;
以及
@property (nonatomic, retain) IBOutlet UIView *splashView;
和.m在下一个按钮clik
[splashView setTag:1000];
[self.view addSubview:splashView];
所以当我移动到名为view01的下一个视图时 IT说
Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<View01 0x56816c0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key splashView.'
答案 0 :(得分:0)
要么你忘了在你的nib文件中将它连接起来,因为它被声明为IBOutlet,或者你在将代码从一个地方粘贴到另一个地方时犯了一些错误(可能你忘了用.h来复制.xib文件.m文件)