1. 程式人生 > >Xcode中誤修改系統類庫挽救措施

Xcode中誤修改系統類庫挽救措施

在使用Xcode開發過程中,時常需要進入系統的類庫中檢視某個類的屬性及方法。但有時候,我們由於不小心改動某處,如果及時發現,我們可以使用commond + z 來恢復。但有時改動了沒有發現,就會出現bug:

file’/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/…

補救措施:

  1. 開啟Xcode,進入Preferences,或者使用快捷鍵 (commond + , )。
    開啟Xcode,進入Preferences

  2. 選中Locations,點選圈中的小箭頭,前往到Derived Data資料夾中。
    選中Locations,點選圈中的小箭頭,進入到Derived Data檔案中

  3. 刪除Derived Data檔案中所有的子檔案。
    刪除Derived Data檔案中所有的子檔案

  4. 重新clean,build一下專案,問題解決了,我們的Xcode又可以正常工作了。