How do I have to do that the user can choose the background of the app by pressing a UIButton ?
By pressing the UIButton it wil
How do I have to do that the user can choose the background of
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You may do this as follows. When the user taps the button, presents a new view managed by a table view controller. The table should show on each row a thumbnail representing a possible background, and a text associated to the image, may be its name. When the user selects a row, you first save the choice (using the defaults, your own database or storing it in your core data model) and then change the background accordingly.