您好,登錄后才能下訂單哦!
Xcode4.2(iOS 5)以后啟用了ARC技術,雖然4.2以后版本仍然可以不開啟ARC,但是我們在建工程的時候有時為了不想管理內存然后就啟用了ARC,但是再開發過程中需要用到第三開發類庫,而這些第三方類庫或是沒做更新而不支持ARC,然后編譯時就出現下列錯誤:
'release' is unavailable: not available in automatic reference counting mode ARC forbids explicit message send of 'release' 'autorelease' is unavailable: not available in automatic reference counting mode ARC forbids explicit message send of 'autorelease' 'retain' is unavailable: not available in automatic reference counting mode ARC forbids explicit message send of 'retain'
解決辦法:
1.在targets->build phases中修改compiler Flags屬性,添加:-fobjc-arc,就可以讓舊的工程支持arc;
2.在targets->build phases中修改compiler Flags屬性,添加:-fno-objc-arc,就可以讓原來支持arc的工程不使用arc,對于大部分第三方類庫來說都可以順利編譯通過
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。