|
@@ -216,13 +216,13 @@
|
216
|
216
|
return nil;
|
217
|
217
|
}
|
218
|
218
|
|
219
|
|
- UIStoryboard* storyboard = [UIStoryboard storyboardWithName:launchStoryboardName bundle:nil];
|
220
|
|
- if (storyboard == nil)
|
221
|
|
- {
|
|
219
|
+ @try {
|
|
220
|
+ UIStoryboard* storyboard = [UIStoryboard storyboardWithName:launchStoryboardName bundle:nil];
|
|
221
|
+ return storyboard.instantiateInitialViewController;
|
|
222
|
+ }
|
|
223
|
+ @catch(NSException *exception) {
|
222
|
224
|
return nil;
|
223
|
225
|
}
|
224
|
|
-
|
225
|
|
- return storyboard.instantiateInitialViewController;
|
226
|
226
|
}
|
227
|
227
|
|
228
|
228
|
+ (UIViewController *)viewControllerFromLaunchNibForScreenBounds:(CGRect)screenBounds
|