標籤:
- 啟動並執行時候先報錯說can’t be opened because it is from an unidentified developer,這是osx自己安全設定搞太高,去安全選項改了(allow apps download from anywhere)之後。又報錯說permission問題,於是在終端用(chmod -R 755 /項目根目錄)(主意:755後面一定要加空格)把所有檔案都改成755許可權,然後就可以完美運行了。
- 用模擬器和真機調試時,環境不同,在工程AppDelegate.m的- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions方法中:模擬器調試時用jsCodeLocation = [NSURL URLWithString:@"http://localhost:8081/index.ios.bundle?platform=ios&dev=true"];真機調試時用jsCodeLocation = [NSURL URLWithString:@"http://10.18.51.27:8081/index.ios.bundle?platform=ios&dev=true"];
- 找不到sever,沒有註冊 : 項目根目錄下運行 react-native start
- cocoaPods 整合第三方庫,編譯報錯 symbol(s) not found for architecture arm64 在other linker Flags 中添加 $(inherited)
- cocoaPods 找不到標頭檔 在user header search path 中添加$(SRCART)
- 當屬性為函數引用時,如果該引用函數中有用到this,需要用bind方法將this傳遞進去
- 另外一直解決方案是:
檔案: RCTWrapperViewController.m
方法: - (void)viewWillAppear:(BOOL)animated
插入下面一句
self.navigationController.tabBarController.tabBar.hidden=self.navigationController.childViewControllers.count>1?YES:NO;
React – Native 踩坑記