我在視圖導航中遇到問題。UINavigation:如何從呈現的模態視圖推送視圖
我有VC說,登錄,這我是從另一個VC調用諸如:在登錄VC
- (IBAction) btnAction
{ Login * login = [[Login alloc] init];
[self.navigationController pushViewController:login animated:YES];
}
有兩個按鈕說,註冊和忘記密碼,也相應地調用另一個VC,RegisterVC和ForgetPassVC 。
- (IBAction) btnRegisterNow : (id) sender
{
aRegister = [[Register alloc] initWithNibName:@"Register" bundle:nil];
[self.navigationController pushViewController:aRegister animated:YES];
}
- (IBAction) btnForgotPassword : (id) sender
{
forgotPassword = [[ForgotPasswd alloc] initWithNibName:@"ForgotPasswd" bundle:nil];
[self.navigationController pushViewController:forgotPassword animated:YES];
}
我的問題:
當我打電話登錄由[self.navigationController pushViewController:login animated:YES];
每一件事情正常工作。
但是在一些VC中我需要顯示登錄頁面爲[self presentModalViewController:login animated:YES];
這時兩個按鈕Register and Forget Password不起作用。在按鈕上單擊沒有反應。
什麼問題?我認爲我已經添加登錄作爲模式視圖bocz不是pushViewConterller?如果是的話,我該如何完成這項任務?
希望問題很明確。
謝謝...
顯示了兩個按鈕,並且您有一個可見的導航欄? – PeyloW
沒有可見的導航條 – Maulik
然後Jilouc有你的答案。 – PeyloW