我在根視圖控制器的導航欄上有一個右欄按鈕。下面是代碼導航欄消失
- (void)viewWillAppear:(BOOL)animated
{
[self.navigationItem setTitle:@"Contacts"];
UIBarButtonItem *addbtn = [[UIBarButtonItem alloc]initWithTitle:@"Add Contact" style:UIBarButtonItemStyleBordered target:self action:@selector(btnClick:)];
self.navigationItem.rightBarButtonItem = addbtn;
[tblview reloadData];
}
當我點擊該按鈕,我得到成功地導航到下一個視圖,但是當我返回到根視圖控制器導航欄被消失。因爲我是iphone應用程序開發的新成員,所以請幫助我。
? – Balu 2013-03-19 11:19:17
是的,我同意@Sunny檢查你的代碼。只有這個代碼沒有幫助 – 2013-03-19 11:20:46
我不知道還有什麼可能是問題。調試了整個代碼。找不到任何東西.. :(不管怎麼說謝謝.. :) – Paul 2013-03-19 11:24:08