이 에러는 여러 케이스에서 발생하는 것 같은데 그 중 내가 겪은 조건은 아래와 같았다.
스플래시를 만들려고 react-native-splash-screen 를 설치하고 ios 환경 설정을 하려고 AppDelegate.m 에서 [RNSplashScreen show]; 를 추가한 경우다.
나 같은 경우는 [RNSplashScreen show]; 를 추가하고 기존 super application: 을 그 아래에 넣었다.
[RNSplashScreen show]; [super application:application didFinishLaunchingWithOptions:launchOptions]; return YES;
하지만 [RNSplashScreen show]; 는 return YES; 바로 위에 넣어야 한다.
[super application:application didFinishLaunchingWithOptions:launchOptions]; [RNSplashScreen show]; return YES;
이렇게 하면 다시 정상 작동된다.