ユニバーサルアプリを開発していて、iOS 6、iOS 5、iPhone 5をサポートしたいと思っています。これをさまざまなストーリーボードで行う予定ですが、問題はAppDelegateでストーリーボードを切り替える方法です。私はこれを試しました:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
float currentVersion = 6.0;
CGSize iOSDeviceScreenSize = [[UIScreen mainScreen] bounds].size;
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= currentVersion == NO) {
if (iOSDeviceScreenSize.height == 480)
{
UIStoryboard *ios5iphone = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone-ios5" bundle:nil];
}
else
{UIStoryboard *ios5iphone = [UIStoryboard storyboardWithName:@"MainStoryboard_iPad-ios5" bundle:nil];}
}
return YES;
}
私は4つのストーリーボードを持っています(iOS6用の自動レイアウト付きのiPhone4/5、iOS6用の自動レイアウト付きのiPad、iOS5用のiPhone4、iOS5用のiPad)
私の問題は、アプリケーションを起動する前にストーリーボードを切り替える方法です。
エラー:
2012-11-18 13:42:42.471 iEveryTech[22902:c07] Unknown class Firs in Interface Builder file.
2012-11-18 13:42:42.494 iEveryTech[22902:c07] *** Terminating app due to uncaught exception 'NSInvalidUnarchiveOperationException', reason: 'Could not instantiate class named NSLayoutConstraint'
*** First throw call stack:
(0x1632052 0xfaed0a 0x15daa78 0x15da9e9 0x43b7d7 0x43b9af 0x43b6b7 0x33c36d 0x1e3e2c 0x1e43a9 0x1e45cb 0x1ffb89 0x1ff9bd 0x1fdf8a 0x1fde2f 0x1fbffb 0x1fc85a 0x1e5fbf 0x1e621b 0x1e70f1 0x155fec 0x15b572 0x15572b 0x144bc2 0x144ce2 0x144ea8 0x14bd9a 0x11cbe6 0x11d8a6 0x12c743 0x12d1f8 0x120aa9 0x17c5fa9 0x16061c5 0x156b022 0x156990a 0x1568db4 0x1568ccb 0x11d2a7 0x11ea9b 0x228d 0x21b5 0x1)
terminate called throwing an exception(lldb)