Matt W
Matt W

Reputation: 6108

How to change the system wallpaper/background of an iOS device with Objective C?

I'm curious if its possible to change the system wallpaper/background for an iOS device programmatically from your own application.

Upvotes: 4

Views: 5123

Answers (1)

Greg
Greg

Reputation: 33650

Apple doesn't provide a public API for doing this. The user must select the picture to use as the wallpaper via the Settings app.

You can make your app save pictures to the user's saved photos, and instruct the user to change the wallpaper manually.

Upvotes: 6

Related Questions