Procházet zdrojové kódy

fixed storyboard crash

yogevbd před 6 roky
rodič
revize
56dcc9b5c8
1 změnil soubory, kde provedl 5 přidání a 5 odebrání
  1. 5
    5
      ios/RCCManager.m

+ 5
- 5
ios/RCCManager.m Zobrazit soubor

@@ -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