我将 iphone 的 ios 版本升级到 10.0,将 xcode 的版本升级到 8.0(测试版)。源代码在 xcode 7.3.1 版中做得很好。但是,当我在 xcode 8.0 中运行代码时,
*** 由于未捕获的异常“NSUnknownKeyException”而终止应用程序,原因:“[setValue:forUndefinedKey:]:此类不符合键 idTextField 的键值编码。”
出现。
没有'!' 在xib中标记。我该如何解决? xib 图像
@interface TutorialViewController () <UIScrollViewDelegate>
{
IBOutlet UIScrollView *tutorialScrollView;
IBOutlet UIPageControl *pageControl;
IBOutlet UIButton *showTermsButton;
IBOutlet UIButton *showPrivacyPolicyButton;
ContactsManager *contactsManager;
IBOutlet UITextField *idTextField;
IBOutlet UITextField *pwTextField;
}
-(IBAction)showTerms:(id)sender;
-(IBAction)showPrivacyPolicy:(id)sender;
-(IBAction)start:(id)sender;
-(IBAction)startWithFacebook:(id)sender;
-(IBAction)goToSignUpPage:(id)sender;
@end
@implementation TutorialViewController