How to extend iOS app to tvOS

IosApple TvTvos

Ios Problem Overview


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 should start a new project with it?

Update1: My question is: How to extend my existing project to support tvOS without building it from scratch?

Update2: Jess Bower point on Apple's website: > Empower customers to enjoy their favorite apps on both iOS and the new > Apple TV with a single purchase by enabling universal purchase for > your app on the App Store.

Which means that we need to create a new bundle on our existing project and enable "universal" purchase so it will count as one app on App Store.

Ios Solutions


Solution 1 - Ios

The tvOS SDK is based off of iOS, but is not interchangeable. Unlike when the first iPad was released, the new Apple TV will not be capable of running iOS apps.

The AppStore for the TV will only include apps built specifically for tvOS.

For any iOS developers looking to create apps for Apple TV, I'd recommend checking out the new documentation page: https://developer.apple.com/library/content/documentation/General/Conceptual/AppleTV_PG/index.html#//apple_ref/doc/uid/TP40015241-CH12-SW1

Specifically, check out the Inherited iOS Frameworks section to give you a sense of what will work out of the box from your existing iOS projects.

Solution 2 - Ios

In Xcode 7.1 (which introduces tvOS SDK) you can add a tvOS target as any other (File -> New -> Target... -> tvOS -> ...) and it supports both Objective-C and Swift, so yes - it's possible to share code between your iOS and tvOS app, you just need to check your source target membership and enable it on your tvOS target. To extend the purchases across iOS and tvOS app we should use Universal Purchases.

Solution 3 - Ios

Took me a little while to find all the things needed to change but this list should cover it.

  1. click iOS target and duplicate
  2. change base sdk of new tvOS target to tvOS latest
  3. make copy of info.plist and have tvOS point to that one
  4. make all the tvOS icons and launch images
  5. set TARGETED_DEVICE_FAMILY to 3 for the tvOS build settings
  6. add any new tvOS specific versions of code e.g. without shouldAutorotate, prefersStatusBarHidden etc.

Solution 4 - Ios

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

Solution 5 - Ios

Just to list out some limitations and challenges:
1. There is no persistent local storage for apps on Apple TV. Data must be stored on iCloud.

2. The maximum size of an Apple TV app is limited to 200MB. On-demand resources (app contents that are hosted on the App Store) should be used. Benefits are smaller app size and lazy loading of app resources.

3. The UI is drastically different. Human Interface Guidelines must be followed as per the doc.

4. Creating a Client-Server App using JavaScript and TVML framework.

5. Controlling the UI touch focus. UIFocusEnvironment controls focus-related behavior for a branch of the view hierarchy. UIViewController conforms to UIFocusEnvironment protocol.

6. Creating Parallax Artwork You have to create a LSR image with Xcode and then use terminal to create a LCR image. A UIImage object can display a LCR image correctly.

Solution 6 - Ios

  1. A new target has to be added for tvOS. There are two ways to do that

    • Add a new target through File > New > File...> tvOS Target.
    • Duplicate an existing iOS target and change TARGETED_DEVICE_FAMILY to 3 and "Supported Platforms" to tvOS in "Build Settings"
  2. Pods need to be added to the tvOS target using pod install. There could be a different list of pods that you can/want to use in tvOS. Pods for different targets can be separated in Podfile using:

    target 'iOS TARGET NAME' do
    pod 'podname', :git => 'https://github.com/name.git'
    end
    
    target 'tvOS TARGET NAME' do
    pod 'podname', :git => 'https://github.com/name.git'
    end
    
  3. Most Pods at the moment do not support tvOS. For those Pods, here are the steps to make them work in your project:

    • Clone the git repo on your local disk

    • If a version of the pod is being used in another target (iOS target), change the name, otherwise CocoaPods will complain: e.g. RestKit --> RestKitTV and use :path In Podfile to point to the location of the cloned repo:

        pod 'RestKitTV', :path => 'Other/RestKitTV'
      
    • Update the podspec file in the cloned repo:

      • Modify the name to be compatible with the new name

      • Change the platform to tvOS or add tvOS to the list of supported platforms

           Pod::Spec.new do |s|
           ..
           s.platform = :tvos
           ..
           end
        
         OR
        
           Pod::Spec.new do |s|
           ..
           s.tvos.deployment_target = '9.0'
           s.tvos.exclude_files = 'framework/Source/Mac', ....
           s.tvos.frameworks   = ['OpenGLES', 'CoreMedia', 'QuartzCore']
           ..
           end
        
  4. Add files to the target:

    • Add source code (.m files) to "Compile Sources" of "Build Phases" for the target
    • Add images to "Copy Bundle Resources"
    • Add frameworks to "Link Binary with Libraries". Note that not all frameworks are compatible with tvOS
  5. Use TARGET_OS_TV and TARGET_OS_IOS macros to separate tvOS non-compatible code

    #if !TARGET_OS_TV
        *iOS only code*
    #else
        *tvOS only code*
    #end
    

Solution 7 - Ios

+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

Solution 8 - Ios

In case of my project, I simply added a new target to the existing iOS project, and modified some code appropriately (using #if os(tvOS/iOS) in a few areas). I am now able to run the same app either on iOS devices or Apple TV.

The only framework missing in tvOS was WebKit (which was necessary to render rich text), and I needed to come up with an alternative mechanism.

I am going to open source this project soon (before the end of October), so that other people can take a look.

Solution 9 - Ios

Don't forget to change the Base SDK into TVos 9.x in the build settings. It's necessary for the Tv simulator to show up

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBlackMView Question on Stackoverflow
Solution 1 - IosAaron WassermanView Answer on Stackoverflow
Solution 2 - IosMaciek CzarnikView Answer on Stackoverflow
Solution 3 - IosrichyView Answer on Stackoverflow
Solution 4 - IosSimon TillsonView Answer on Stackoverflow
Solution 5 - IosVaccaView Answer on Stackoverflow
Solution 6 - IosDijamView Answer on Stackoverflow
Solution 7 - IosDanoli3View Answer on Stackoverflow
Solution 8 - IosSatoshi NakajimaView Answer on Stackoverflow
Solution 9 - IosPavlosView Answer on Stackoverflow