1. 程式人生 > >xcode檔案找不到---“AFNetworking.h”file not found

xcode檔案找不到---“AFNetworking.h”file not found

今天遇到一個很奇怪的問題,在本地通過cocoapods引入AFNetworking包後,檔案引入報錯:“AFNetworking.h”file not found,但是拷貝到另一臺電腦,能夠重新執行,本以為是xcode出了問題,所以重新安裝了xcode,但是問題依然存在。

後來在網站上看到一個解決“AFNetworking.h”找不到的解決方案。原文的答案是:

In XCode Go to Product -> Scheme -> Manage Schemes. There delete the project (maintaining the pods) and add the project again. It worked for me.

大體就是說把Scheme裡面的當前專案刪除後重新安裝即可。

通過實驗已經解決我的問題。