自定義Xcode檢測API版本兼容

關(guān)鍵詞: iOS 低版本 調(diào)用 高版本 API

我們在編程過程中經(jīng)常遇到新的Api無法兼容低版本系統(tǒng)造成Crash問題,如何讓Xcode編譯時對于高于工程版本的Api顯示警告呢突梦?今天特意研究一番:
一般是通過兩種方式:

方案一:

使用開源的MJGAvailability.h
把MJGAvailability.h文件加入工程中拥刻,在預(yù)編譯頭文件最開頭加上下面的代碼即可:

#define __IPHONE_OS_VERSION_SOFT_MAX_REQUIRED __IPHONE_7_0
#import "MJGAvailability.h"

一般需要配置Enable Modules為NO齿椅;大多數(shù)工程可能不適合竹勉,所以效果一般在刺;

方案二:

修改Xcode中的iOS SDK

在Xcode中贷岸,NS_AVAILABLE(10_5, 2_0)我們通過其宏定義一步步點進去:
1)、NS_AVAILABLE(10_5, 2_0)
2)嵌削、#define NS_AVAILABLE(_mac, _ios) CF_AVAILABLE(_mac, _ios)
3)毛好、#define CF_AVAILABLE(_mac, _ios) __attribute__((availability(macosx,introduced=_mac)))
所以望艺,我們可以通過重寫CF_AVAILABLE(_mac, _ios) 來提示是否應(yīng)該API是否合法

其宏定義所屬文件夾:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/Frameworks/CoreFoundation.framework/Headers/CFAvailability.h

在該文件夾下打開CFAvailability.h(注意不要使用Xcode來打開(需要權(quán)限),用其他編輯軟件來打開肌访,比如:Sublime等)

我這里是針對自己的iOS工程最低適配到iOS8.0找默,所以在(CFAvailability.h 60行)#elif (TARGET_OS_EMBEDDED || TARGET_OS_IPHONE)這個條件下重寫CF_AVAILABLE_IOS(_ios), CF_AVAILABLE(_mac, _ios)這兩個宏定義,具體代碼如下:

#define __NEP_2_0 availability(ios,introduced=2.0)

#define __NEP_2_1 availability(ios,introduced=2.1)

#define __NEP_2_2 availability(ios,introduced=2.2)

#define __NEP_3_0 availability(ios,introduced=3.0)

#define __NEP_3_1 availability(ios,introduced=3.1)

#define __NEP_3_2 availability(ios,introduced=3.2)

#define __NEP_4_0 availability(ios,introduced=4.0)

#define __NEP_4_1 availability(ios,introduced=4.1)

#define __NEP_4_2 availability(ios,introduced=4.2)

#define __NEP_4_3 availability(ios,introduced=4.3)

#define __NEP_5_0 availability(ios,introduced=5.0)

#define __NEP_5_1 availability(ios,introduced=5.1)

#define __NEP_6_0 availability(ios,introduced=6.0)

#define __NEP_6_1 availability(ios,introduced=6.1)

#define __NEP_7_0 availability(ios,introduced=7.0)

#define __NEP_7_1 availability(ios,introduced=7.1)

#define __NEP_8_0 availability(ios,introduced=8.0)

#define __NEP_8_1 availability(ios,introduced=8.1) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_8_2 availability(ios,introduced=8.2) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_8_3 availability(ios,introduced=8.3) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_9_0 availability(ios,introduced=9.0) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_9_1 availability(ios,introduced=9.1) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_9_2 availability(ios,introduced=9.1) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_9_3 availability(ios,introduced=9.1) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_9_4 availability(ios,introduced=9.1) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_9_5 availability(ios,introduced=9.1) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_10_0 availability(ios,introduced=10.0) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_10_1 availability(ios,introduced=10.1) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_10_2 availability(ios,introduced=10.2) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_10_3 availability(ios,introduced=10.3) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_10_4 availability(ios,introduced=10.4) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_10_5 availability(ios,introduced=10.5) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_10_6 availability(ios,introduced=10.6) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_10_7 availability(ios,introduced=10.7) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_10_8 availability(ios,introduced=10.8) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_10_9 availability(ios,introduced=10.9) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_10_10 availability(ios,introduced=10.10) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_11_1 availability(ios,introduced=11.1) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_11_2 availability(ios,introduced=11.2) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_11_3 availability(ios,introduced=11.3) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_11_4 availability(ios,introduced=11.4) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_11_5 availability(ios,introduced=11.5) deprecated("mqc:::: API version newer than iOS8.0")

#define __NEP_11_6 availability(ios,introduced=11.6) deprecated("mqc:::: API version newer than iOS8.0")

#define CF_AVAILABLE_IOS(_ios) __attribute__((,__NEP_##_ios))

#define CF_AVAILABLE(_mac, _ios) __attribute__((,__NEP_##_ios))

具體提示內(nèi)容可以自定義吼驶。

注意:
以上方式針對Xcode8版本是有效的惩激,針對Xcode9

Xcode9以后上述方式會出現(xiàn)Xcode編譯出錯,原因是:
在iOS11的frameworks中出現(xiàn)了NS_CLASS_AVAILABLE_IOS(8.0)這樣的宏蟹演,Xcode之前的代碼一般的寫法為NS_CLASS_AVAILABLE_IOS(8_0)這樣的下劃線方式风钻,而且這個地方是蘋果宏定義聚集的地方,應(yīng)該非常忌諱用小數(shù)點來表示酒请,我的猜測多半是新員工搞事情骡技;
如果是“8.0”這樣的方式出現(xiàn)我們再使用宏定義的方式改寫蘋果的API肯定是不行,因為“ISO C99”不支持這樣的字符串格式羞反。

不過好在Xcode9已經(jīng)支持檢測低版本API的兼容問題布朦,你只需要搜索“is only available on iOS 8.0”查看適配情況就OK了。例如:

'UIImageRenderingModeAlwaysOriginal' is only available on iOS 7.0 or newer

只需要點擊fix就行昼窗。

如果Xcode9提供的你就是不想用(任性)是趴,重寫#define NS_CLASS_AVAILABLE_IOS(_ios) NS_CLASS_AVAILABLE(NA, _ios)這個宏定義;
思路:
在“CFAvailability.h”文件中新建一個宏定義的澄惊,然后通過重寫“NSObjCRuntime.h”文件中的#define NS_CLASS_AVAILABLE_IOS(_ios) NS_CLASS_AVAILABLE(NA, _ios)為新加的宏定義即可唆途。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市缤削,隨后出現(xiàn)的幾起案子窘哈,更是在濱河造成了極大的恐慌吹榴,老刑警劉巖亭敢,帶你破解...
    沈念sama閱讀 211,290評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異图筹,居然都是意外死亡帅刀,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評論 2 385
  • 文/潘曉璐 我一進店門远剩,熙熙樓的掌柜王于貴愁眉苦臉地迎上來扣溺,“玉大人,你說我怎么就攤上這事瓜晤∽队啵” “怎么了?”我有些...
    開封第一講書人閱讀 156,872評論 0 347
  • 文/不壞的土叔 我叫張陵痢掠,是天一觀的道長驱犹。 經(jīng)常有香客問我嘲恍,道長,這世上最難降的妖魔是什么雄驹? 我笑而不...
    開封第一講書人閱讀 56,415評論 1 283
  • 正文 為了忘掉前任佃牛,我火速辦了婚禮,結(jié)果婚禮上医舆,老公的妹妹穿的比我還像新娘俘侠。我一直安慰自己,他們只是感情好蔬将,可當(dāng)我...
    茶點故事閱讀 65,453評論 6 385
  • 文/花漫 我一把揭開白布爷速。 她就那樣靜靜地躺著,像睡著了一般霞怀。 火紅的嫁衣襯著肌膚如雪遍希。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,784評論 1 290
  • 那天里烦,我揣著相機與錄音凿蒜,去河邊找鬼。 笑死胁黑,一個胖子當(dāng)著我的面吹牛废封,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播丧蘸,決...
    沈念sama閱讀 38,927評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼漂洋,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了力喷?” 一聲冷哼從身側(cè)響起刽漂,我...
    開封第一講書人閱讀 37,691評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎弟孟,沒想到半個月后贝咙,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,137評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡拂募,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,472評論 2 326
  • 正文 我和宋清朗相戀三年庭猩,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片陈症。...
    茶點故事閱讀 38,622評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡蔼水,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出录肯,到底是詐尸還是另有隱情趴腋,我是刑警寧澤,帶...
    沈念sama閱讀 34,289評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站优炬,受9級特大地震影響疏叨,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜穿剖,卻給世界環(huán)境...
    茶點故事閱讀 39,887評論 3 312
  • 文/蒙蒙 一蚤蔓、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧糊余,春花似錦秀又、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至蘸劈,卻和暖如春昏苏,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背威沫。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工贤惯, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人棒掠。 一個月前我還...
    沈念sama閱讀 46,316評論 2 360
  • 正文 我出身青樓孵构,卻偏偏與公主長得像,于是被迫代替她去往敵國和親烟很。 傳聞我的和親對象是個殘疾皇子颈墅,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,490評論 2 348

推薦閱讀更多精彩內(nèi)容