0
我看到了奇怪的編譯錯誤:「setNewsstandIconImage」只能在iOS 9.0或更高版本
'setNewsstandIconImage' is only available on iOS 9.0 or newer
但這種方法在IOS 7和8上提供的Xcode 6.4。如何解決它?
我看到了奇怪的編譯錯誤:「setNewsstandIconImage」只能在iOS 9.0或更高版本
'setNewsstandIconImage' is only available on iOS 9.0 or newer
但這種方法在IOS 7和8上提供的Xcode 6.4。如何解決它?
我發現一個黑客如何做到這一點的雨燕2.2:
UIApplication.sharedApplication().performSelector(Selector("setNewsstandIconImage:"), withObject: image)
,你將有警告,而不是編譯錯誤。