我得到一個錯誤exc_bad_access
,當我使用dismissviewcontrolleranimated
當我使用dismissviewcontrolleranimated,我得到EXC_BAD_ACCESS
的presentViewController
代碼:
TestViewController *testViewController=[[TestViewController alloc] init];
UINavigationController *nav=[[UINavigationController alloc] initWithRootViewController:testViewController];
[self presentViewController:nav animated:YES completion:^{
NSLog(@"presentViewController is finish");
}];
但是,當我刪除UINavigationController
,是錯誤消失。
這樣的:
TestViewController *testViewController=[[TestViewController alloc] init];
[self presentViewController:testViewController animated:YES completion:^{
NSLog(@"presentViewController is finish");
}];
感謝您的幫助。
你在使用故事板嗎? –
不,我沒有使用故事板,只有xib –