簡単なビュー切り替え機能を作ってみたのですがうまくいきませんでした。問題は、私self.navigationControler
がnil
. どうすれば修正できますか?
ViewController2 *hs=[self.storyboard instantiateViewControllerWithIdentifier:@"Highscore"];
if(self.navigationController==nil)
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"YOur Message" message:@"Your description"
delegate:self cancelButtonTitle:@"No" otherButtonTitles:@"Yes", nil];
[alert show];
}
[self.navigationController pushViewController:hs animated:YES];