Ладно, это странно и мучает меня уже несколько дней .... Я сделал это правильно (я думаю), но это
Все это было сделано в 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];
Что я делаю не так.Я не могу заставить работать какие-либо элементы на странице.У меня есть кнопка на моей текущей странице, которая также не работает.