UINavigation Bar и UITabBar программно - все объекты отключены? - PullRequest
0 голосов
/ 06 ноября 2010

Ладно, это странно и мучает меня уже несколько дней .... Я сделал это правильно (я думаю), но это

Все это было сделано в AppDelegate:

//Initialize the controllers

 navController = [[UINavigationController alloc]init];
 iVacationTabBar = [[UITabBarController alloc] init];


//Define the viewcontrollers

 myTools* vc_tools = [[myTools alloc] init];
 mySettings* vc_settings = [[mySettings alloc] init];
 aboutIVacation* vc_about = [[aboutIVacation alloc] init];
 myCurrent *mycurrentpage = [[myCurrent alloc] init];
//Create the array of controllers

 NSArray* controllers = [NSArray arrayWithObjects:mycurrentpage,  vc_tools,vc_settings, vc_about, nil];

//Add the view controllers to the tab bars:

 [iVacationTabBar setViewControllers: controllers animated:YES];

//Push the first view controller to the stack:

 [navController pushViewController: mycurrentpage animated:NO];

//Add the tabBar and navController to the window:

 [window addSubview:iVacationTabBar.view];
 [window addSubview:navController.view];

Что я делаю не так.Я не могу заставить работать какие-либо элементы на странице.У меня есть кнопка на моей текущей странице, которая также не работает.

1 Ответ

0 голосов
/ 07 ноября 2010

Ура !!!Решил проблему из справки из другого поста на форуме:

У меня были перевернутые строки, я должен был добавить вспомогательный вид контроллера Nav перед панелью вкладок

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...