标签:mil iphone 不同类 ret 类型 phone 不同 control ica
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) {
        self.viewController = [[ViewController alloc] 
        initWithNibName:@"ViewController_iPhone" bundle:nil];
   }
   else{
        self.viewController = [[ViewController alloc] initWithNibName:
        @"ViewController_iPad" bundle:nil];
   }
   self.window.rootViewController = self.viewController;标签:mil iphone 不同类 ret 类型 phone 不同 control ica
原文地址:http://www.cnblogs.com/PJXWang/p/5996066.html