Is there an iPhone SDK API that I can use to get the current wallpaper image?

Is there an iPhone SDK API that I can use to get the current wallpaper image? I would like to use this image in the game.

+3
source share
3 answers

To my knowledge, there is currently no API that will allow you to do this.

+4
source

There is no API for this, but you can download /User/Library/LockBackground.jpg with +[UIImage imageWithContentsOfFile:]

Note: this file will not exist if the user has not changed from the default wallpaper "globe"

+4
source

API, App Store

[UIImage defaultDesktopImage]

+1

Source: https://habr.com/ru/post/1704959/


All Articles