StoryBoardを使用しない私のアプリからの私のAppDelegateからのこのコード、およびこのコードはビューを正常に切り替えます-
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
if (buttonIndex == 0)
{
LN_ShowNoteVC *showVC = [[LN_ShowNoteVC alloc] init];
_iconBage = _iconBage - 1;
showVC.number = _showP;
NSLog(@"showVC.number = %i", _showP);
_window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
_window.rootViewController = showVC;
[_window makeKeyAndVisible];
}
}
今、私は StoryBoard を使用してアプリを書き直しました.....そして、このコードは機能していません...黒いウィンドウが表示されます
どうすれば AppDelegate からビューを切り替えることができますか???