How to extend iOS app to tvOS

后端 未结 9 1833
别跟我提以往
别跟我提以往 2020-12-12 14:55

I have an iOS app that I need to extend to tvOS. All the information that I found are explaining how to start from scratch! Is there any way to extend my app to tvOS or I sh

9条回答
  •  盖世英雄少女心
    2020-12-12 15:16

    +Simon-Tillson answer is correct, however I had some backwards compatibility issues with iOS 8.1 and below SDK's where TARGET_OS_IOS was not defined (for older Xcode versions)

    The following code fixes that and works the same for iOS 9.0/9.1 SDK + and previous 8.1 and less SDKS.

    #if TARGET_OS_IOS || (TARGET_OS_IPHONE && !TARGET_OS_TV)
    // iOS-specific code
    #elif TARGET_OS_TV
    // tvOS-specific code
    #endif
    

提交回复
热议问题