没有使用iOS Project创建的用户界面文件

时间:2011-11-23 06:52:02

标签: ipad xcode4 ios-simulator

我开始使用iOS编程,并在XCode 4.2.1中创建了一个新项目。但是,我没有按预期在项目中看到.xib文件。我尝试添加一个新的.xib文件并在其上构建界面,但是当我运行我的程序时,我在iPad模拟器上看到一个空白的白色屏幕。我错过了什么吗?感谢。

1 个答案:

答案 0 :(得分:0)

你可以在appDelegate中替换这个方法(如果需要,可以在xib的名称中删除代码的通用方面)

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
    // Override point for customization after application launch.
    if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
        self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController_iPhone" bundle:nil] autorelease];
    } else {
        self.viewController = [[[ViewController alloc] initWithNibName:@"ViewController_iPad" bundle:nil] autorelease];
    }
    self.window.rootViewController = self.viewController;
    [self.window makeKeyAndVisible];
    return YES;
}

从创建新应用时提供的模板中选择单一视图应用