Universal App问题

时间:2011-08-24 05:47:22

标签: iphone ipad ios-universal-app

大家.. 我创建了一个通用应用程序.. 我的应用程序工作正常只有两个视图.. 在iPhone应用程序工作正常MainView - >第一视图 - > SecondView - > ThirdView .. 但在iPad中仅适用于MainView - > First View ..之后无法调用SeconfView ..

我也调用了这个视图,但没有调用..

if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
{
    languageObj = [[LanguageSelection alloc] initWithNibName:@"Language_iPhone" bundle:[NSBundle mainBundle]];
    [self.navigationController pushViewController:languageObj animated:NO];
}
else if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
    languageObj = [[LanguageSelection alloc] initWithNibName:@"LanguageView_iPad" bundle:[NSBundle mainBundle]];
    [self.navigationController pushViewController:languageObj animated:NO];
}

笔尖名称也很完美..查看插座也设置在nib文件中..但是只在iPad中调用了LanguageView ..

请让我知道,我做过什么不对的事情.. 感谢..

1 个答案:

答案 0 :(得分:0)

现在这解决了...... 我需要在didFinishLaunchingWithOptions方法中只添加一行..

UINavigationController *navCont = [[UINavigationController alloc] initWithRootViewController:menuView];

感谢谁努力解决我的问题..谢谢..