How to extend iOS app to tvOS

BlackM picture BlackM · Sep 10, 2015 · Viewed 30.5k times · Source

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.

Answer

Aaron Wasserman picture Aaron Wasserman · Sep 10, 2015

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.