ストーリーボードを使用して APP を起動していましたが、最終的に削除する必要がありました。そのため、Xcode でオプション Main Interface をコントローラーに変更しました。さて、APPを起動すると、次のエラーが表示されます:
Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<UIApplication 0x711d750> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key view.
私のAppDelegateには次の機能があります
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
return YES;
}