将iPhone应用程序转换为通用应用程序

时间:2013-02-19 05:48:31

标签: iphone ipad xcode4.5

我在开始时创建了一个iphone应用程序。但现在我想将它更改为通用app.In转换它我已经将目标更改为universal.Gone通过google并发现我必须为ipad创建不同的xib。我改为通用,它要求我为ipad创建一个MainWindow。我点击了Yes.Now在我的应用程序启动时,我得到一个tabbarController。所以我创建了一个用于ipad的ViewController.xib,它在tabbarController中链接。 BUt我得到错误[setValue:forUndefinedKey:]:这个类不是密钥委托的密钥值编码兼容。

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
    {


       ViewController *first=[[ViewController alloc]
                                  initWithNibName:@"ViewController-iPad" bundle:nil] ;


        Login *second=[[Login alloc]initWithNibName:@"Login" bundle:nil];
        second.title=@"Login";
        NSArray *viewArray=[[NSArray alloc] initWithObjects: first,second,nil];
        UITabBarController *tabBarController1=[[UITabBarController alloc] init];
        [tabBarController1 setViewControllers:viewArray animated:NO];

        for(UIViewController *tab in  tabBarController1.viewControllers)

        {
            [tab.tabBarItem setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
                                                    [UIFont fontWithName:@"TimesNewRomanPS-BoldMT" size:16.0], UITextAttributeFont, nil]
                                          forState:UIControlStateNormal];
        }
        [self.window addSubview:tabBarController1.view];
        [self.window makeKeyAndVisible];
        CGRect  rect = [[UIScreen mainScreen] bounds];
        [self.window  setFrame:rect];
        [viewArray release];
        [first release];
        [second release];
        return YES;

    }

    else
    {
        //code to load tabbarController for  iphone xib's

在哪里链接?当我点击FilesOwner时,我找不到任何商店?

0 个答案:

没有答案