私はプログラミングが初めてで、ここで何をしたかわかりませんが、新しい VC クラスをセットアップしていて、新しいプロジェクトの構築時にストーリーボードに自動的にセットアップされる標準 VC を誤って置き換えました。時間
#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 には、次の画面に進むボタンが 1 つしかありませんが、このエラーで起動するとすぐにクラッシュします。
Terminating app due to uncaught exception 'NSUnknownKeyException',
reason: '[<ViewController 0x7575ee0> setValue:forUndefinedKey:]:
this class is not key value coding-compliant for the key go.'
とにかく、最初からやり直さずにこれを機能させることができますか? 今では大規模なプログラムです。