我开始使用iOS编程,并在XCode 4.2.1中创建了一个新项目。但是,我没有按预期在项目中看到.xib文件。我尝试添加一个新的.xib文件并在其上构建界面,但是当我运行我的程序时,我在iPad模拟器上看到一个空白的白色屏幕。我错过了什么吗?感谢。
答案 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;
}
或
从创建新应用时提供的模板中选择单一视图应用