1. 程式人生 > >React-Native 'RCTRootView.h' file not found AppDelegate.m

React-Native 'RCTRootView.h' file not found AppDelegate.m

1.有時在開啟React-Native的專案時,會報錯:’RCTRootView.h’ file not found AppDelegate.m 檔案找不到;

這裡寫圖片描述

2.cd 到我們該專案的根目錄下;

//執行
$npm install

3.執行完後,編譯專案,看到還會提示錯誤: 在RCTSRWebSocket.m報錯Ignoring return value of function declared with warn_unused_result attribute

兩處的報錯程式碼:
SecRandomCopyBytes(kSecRandomDefault, sizeof(uint32_t), (uint8_t *)mask_key);
//解決辦法
分別在兩出程式碼前面加上void
(void)SecRandomCopyBytes(kSecRandomDefault, sizeof(uint32_t), (uint8_t *)mask_key);

再次執行,即可執行成功.