tingxins / SakuraKit

🤡SakuraKit, a lightweight and powerful library for application to switching themes or skins.
https://tingxins.com/2017/08/ios-theme-skin-resolution/
MIT License
691 stars 116 forks source link

Xcode 8.2.1 运行报错 #1

Closed jianjianhao closed 7 years ago

jianjianhao commented 7 years ago
9b367d54-917b-4902-ba0d-2fb0a4c724e0
tingxins commented 7 years ago

这个是因为 Xcode 8.xx 版本无法识别的原因。Xcode 9 是可以的。

Xcode 8 可选替代方案:


if ([[UIDevice currentDevice].systemVersion doubleValue] >= 10.0) {
        tabBarController.tabBar.sakura
        .unselectedItemTintColor(@"Global.tabTitleColor");
} else {

}