IOS小知識點13之xcode常見錯誤問題錦集

2021-06-28 02:39:36 字數 692 閱讀 3609

(1)

has been modified since the precompiled header '/users/fastweb/library/developer/xcode/deriveddata/modulecache/1ksa8w9ugu59r/uikit-3pqyzsz0vs4ca.pcm' was built

解決辦法:

吧:/users/fastweb/library/developer/xcode/deriveddata/modulecache/1ksa8w9ugu59r/ 這個目錄下的所有檔案全部刪除,然後clean。重新build即可。

原因:編譯標頭檔案被篡改。

(2)

編譯的標頭檔案有問題:

將這裡面的標頭檔案清空。

一般都是pch中原來的 預編譯檔案造成的。

類似這個內容:

#ifdef __objc__

#import

#import

#endif

(3)

no such file or directory

什麼檔案沒有就搜尋什麼檔案,找到木有的檔案刪除。新增新的即可。

只要是模擬器出錯,只需要將模擬器重啟 reset即可。

iOS小知識點

1.nslog日誌列印 ifdef debug 除錯 define czlog nslog va args else 發布 define czlog endif 2.自定義導航欄後實現滑動返回功能 self interactivepopgesturerecognizer delegate nil 3...

iOS小知識點

獲取快取 1.匯入 import sdimagecache.h 把b單位轉換為m nsstring stringwithformat 2fm double sdimagecache sharedimagecache getsize 1000 1000 清除快取 sdimagecache shared...

Mysql之in 小知識點

使用in關鍵字檢索資料表中指定的資料內容。in關鍵字被用在where語句的後邊,用來過濾你所需要查詢的內容。更形象的說,in關鍵字的使用情形就像點名,點到誰誰就要站出來。語法規則為 select 欄位名 from 表名 where 欄位名 in n1,n2,n3,其中,括號內的數字必須為int格式的...