我对编程有点陌生,不确定我在这里做了什么,但我正在设置一个新的 VC 类,并意外替换了标准 VC,该标准 VC 在构建新项目时自动设置在我的故事板中。这是显示的第一个 VC。 H
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
@end
这是.m
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
这个 VC 所拥有的只是一个按钮,它可以转到下一个屏幕,但是一旦启动并出现此错误,它就会立即崩溃。
Terminating app due to uncaught exception 'NSUnknownKeyException',
reason: '[<ViewController 0x7575ee0> setValue:forUndefinedKey:]:
this class is not key value coding-compliant for the key go.'
无论如何我可以在不重新开始的情况下让它工作吗?因为它现在是一个大程序。