我有一个通用应用,我在application:didFinishLaunchingWithOptions
手动加载我的主要故事板。
我有2个适用于iPhone和iPad的故事板,其后缀为~iPhone
和~iPad
。我正在使用以下方式加载我的故事板:
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
self.initialViewController = [storyboard instantiateInitialViewController];
这会将Unknown class ViewController in Interface Builder file.
打印到控制台,显然它没有加载正确的故事板。但是,当我使用[UIStoryboard storyboardWithName:@"MainStoryboard~iPhone" bundle:nil];
时它工作正常,但当然只适用于iPhone。
我错过了什么?如何使用名称后缀自动选择正确的故事板?
答案 0 :(得分:12)
我不知道基于文件名后缀自动选择故事板。您可以使用userInterfaceIdiom
选择iPad与iPhone:
if ([[UIDevice currentDevice] userInterfaceIdiom] ==UIUserInterfaceIdiomPad) {
UIStoryboard *storyboard =
[UIStoryboard storyboardWithName:@"MainStoryboard_iPad" bundle:nil];
} else {
[UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle:nil];
}
但是如果你这样做是为了启动一个特定的视图控制器,你需要做的就是将“开始”箭头拖到故事板中的首选视图控制器
或者 - 在故事板中选择视图控制器,转到属性instpector并勾选isInitialViewController
答案 1 :(得分:1)
这是您可以直接在info.plist文件中设置的另一件事。无需任何编程工作。查找名为'主故事板文件库名称' 的属性,默认情况下将包含' Main' 。
您可以添加另一个名为'主故事板文件基本名称(iPad)' 的属性,然后将其用于iPad。
这就是plist中的原始输出:
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UIMainStoryboardFile~ipad</key>
<string>iPad</string>
Afaik也可以简单地添加名为Main~iPad.storyboard的第二个故事板(如果UIMainStoryboardFile键设置为Main)。这将适用于iPad。但是,Haven在一段时间内对此进行了测试。
答案 2 :(得分:0)
//在appdelegate类中,启动应用程序时选择指定的故事板。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
UIStoryboard *storyboard1;
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
{
storyboard1 = [UIStoryboard storyboardWithName:@"Main_iPhone" bundle:[NSBundle mainBundle]];
}
else if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
storyboard1 = [UIStoryboard storyboardWithName:@"Main_iPad" bundle:[NSBundle mainBundle]];
}
UIViewController *vc = [storyboard instantiateInitialViewController];
// Set root view controller and make windows visible
self.window.rootViewController = vc;
[self.window makeKeyAndVisible];
return YES;
}
答案 3 :(得分:0)
您可以像这样命名您的故事板
然后像这样选择
- (UIStoryboard *)deviceStoryboardWithName:(NSString *)name bundle:(NSBundle *)bundle {
if (IS_IPAD) {
NSString *storyboardIpadName = [NSString stringWithFormat:@"%@_iPad", name];
NSString *path = [[NSBundle mainBundle] pathForResource:storyboardIpadName ofType:@"storyboardc"];
if (path.length > 0) {
return [UIStoryboard storyboardWithName:storyboardIpadName bundle:bundle];
}
}
return [UIStoryboard storyboardWithName:name bundle:bundle];
}