React – Native 踩坑記

來源:互聯網
上載者:User

標籤:

 
  1. 啟動並執行時候先報錯說can’t be opened because it is from an unidentified developer,這是osx自己安全設定搞太高,去安全選項改了(allow apps download from anywhere)之後。又報錯說permission問題,於是在終端用(chmod -R 755 /項目根目錄)(主意:755後面一定要加空格)把所有檔案都改成755許可權,然後就可以完美運行了。
  2. 用模擬器和真機調試時,環境不同,在工程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"];
  3. 找不到sever,沒有註冊 : 項目根目錄下運行 react-native start
  4. cocoaPods 整合第三方庫,編譯報錯 symbol(s) not found for architecture arm64 在other linker Flags 中添加 $(inherited)
  5. cocoaPods 找不到標頭檔 在user header search path 中添加$(SRCART)
  6. 當屬性為函數引用時,如果該引用函數中有用到this,需要用bind方法將this傳遞進去
  7. 另外一直解決方案是:
    檔案: RCTWrapperViewController.m
    方法: - (void)viewWillAppear:(BOOL)animated
    插入下面一句

self.navigationController.tabBarController.tabBar.hidden=self.navigationController.childViewControllers.count>1?YES:NO;

 

React – Native 踩坑記

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.