문제

I have an entry in my app's Info.plist (a Dictionary), and I only want it to be used in iOS 6 and above. It involves font replacement, using FontReplacer, and I don't want to replace fonts for a device running iOS 5. You can see the example on GitHub for a better explanation.

Basically, is there a way for me to only use that Info.plist entry if the user's device is running iOS 6 or later?

Thanks.

올바른 솔루션이 없습니다

다른 팁

No.

There isn't a way to tell the system to only have a specific entry available if >iOS 6.

There is, however, a way to tell whether you're on an OS > 6 in code, though:

#ifdef IPHONE_6_0
    //...
#endif
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top