我想從一個xib到另一個,我使用TabBar。 當我從xib移動到xib與PresentModalViewController
我失去了TabBar。PresentModalViewController不顯示TabBar
當我用這種方式,它失敗(如力接近的android):
FirstViewController *fvc = [[FirstViewController alloc]initWithNibName:@"FirstViewController" bundle:nil];
[fvc setModalTransitionStyle:UIModalTransitionStyleFlipHorizontal];
fvc.userSelectedLatitude = saveLatitude;
fvc.userSelectedLongitude = saveLongtitude;
UITabBarController *tabControl = [[UITabBarController alloc] initWithNibName:fvc bundle:nil];
[self presentModalViewController:tabControl animated:NO];
當我使用:
UITabBarController *tabControl = [[UITabBarController alloc] initWithNibName:@"FirstViewController" bundle:nil];
我得到黑屏的TabBar。
因爲這一切都失敗我猜這不是正確的方法。 那麼,正確的做法是什麼?
我想把它與標籤欄 – 2013-02-19 08:54:25
看到答案更新 – thxou 2013-02-19 11:29:42
它把我帶到正確的地方,但只顯示正確的形象與特定的標籤欄;沒有標題,也沒有其他按鈕。 編輯:好的,我加了控制器的其餘部分,現在好了,謝謝! – 2013-02-19 17:09:39