ios - Best way to save an UIImage to Apple TV -


i downloaded uiimage server. want save uiimage data apple tv. how can that. thank you. mean: there way save photo gallery (like iphone), or moreover, save photo icloud.

there no persistent local storage apps on apple tv. means every app developed new apple tv must able store data in icloud , retrieve in way provides great customer experience.

but

you have complete access cached , temporary directory. remember data can, , will, purged @ point.

so access temporary folder have do

nsstring *filepath = [nstemporarydirectory() stringbyappendingpathcomponent:[nssstring stringwithformat:@"%d", appbundleid]; 

and cache folder like

nsstring *cachespath = [nssearchpathfordirectoriesindomains(nscachesdirectory, nsuserdomainmask, yes) lastobject]; nsstring *cachefile = [cachespath stringbyappendingpathcomponent:@"file.plist"]; 

source:https://forums.developer.apple.com/thread/19002


Comments