I've been trying to save the data of a stage as an archive of a SKScene for my TVOS game. I got it working on a simulator. However, the TVOS apparently doesn't have local storage to put the archive in.
The only other places I can figure to put the archive in are in the bundle itself (which is frowned upon for some reason) and the cloud (which seems silly needing to connect to the cloud to read game data that really should just come with the game).
I'm not really sure what the right way to proceed is, now.
tvOS does have local storage. However, it is limited to 4 GB.
As of January 12, 2017 - Apple is now accepting tvOS app bundles that are up to 4GB in size. See the announcement here: Now Accepting Larger tvOS Binaries
Prior to January 12, 2017 - It was limited to 200 MB. Apple's documentation has since been updated to reflect this change.
From the documentation:
If your bundle exceeds the
200 MB4 GB limit, you will have to employ one of the options Apple describes above. The right way to proceed will depend on the architecture of your game and more specifically how this architecture can handle on-demand assets.