objective c - Setting the background image of iPhone from an app -
i wondering if possible set iphone's background image app. have image uiimageview. when phone locked theres "wallpaper background image." there way make button can set wallpaper of phone uiimageview? in background view (you might have drag iboutlet it) like: imageview.bounds = view.bounds; imageview.hidden = yes; [view addsubview:imageview]; then when button pressed (possibly ibaction) turn background on , off. if (imageview.hidden){ imageview.hidden = no; }else{ imageview.hidden = yes; }