deeplinking2 [React Native] ReactNative Deeplink세팅 환경 - React Native v0.67.3 - React Navigation v6 iOS 세팅 1. AppDelegate.m 에 소스 추가 #import - (BOOL)application:(UIApplication *)applicationopenURL:(NSURL *)urloptions:(NSDictionary *)options{return [RCTLinkingManager application:application openURL:url options:options];} - (BOOL)application:(UIApplication *)application continueUserActivity:(nonnull NSUserActivity *)userActivity restorationHandler:(.. 2022. 3. 28. [React Native] iOS 딥링크 오류 Use of undeclared identifier 'RCTLinkingManager' React Native 딥링크를 세팅하던 차에 iOS쪽에서 이런 오류가 났다. Use of undeclared identifier 'RCTLinkingManager' AppDelegate.m파일에 필요소스를 추가했는데 RCTLinkingManager 라이브러리가 import되지 않아 생긴 오류였다. 해결책: #import 를 #ifdef FB_SONARKIT_ENABLED 위쪽으로 올리면 된다. 이게 왜 해결책이 되는진 모르겠지만... 이렇게 하면 라이브러리가 무사히 import 된다. 2022. 3. 28. 이전 1 다음