How to extend iOS app to tvOS

后端 未结 9 1817
别跟我提以往
别跟我提以往 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:18

    I also believe that adding a new target for tvOS is the way to go, especially if you have lots of objective-c or swift code to share between projects.

    For those instances where there might be some tvOS-unsupported types in your shared code, I have used these preprocessor symbols to provide alternate code snippets for tvOS:

    #if TARGET_OS_IOS
    // iOS-specific code
    #elif TARGET_OS_TV
    // tvOS-specific code
    #endif
    

提交回复
热议问题