My problem is,
I have table of names. And when I touch on each name, a new view should appear and image of corresponding name.
For all the names only one view should be there and the image should change dynamically.
Thank You.
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.
If you have a view controller with an
UIImageView. Then I’d make the UIImageView a property:Then in the
didSelectCellAtIndexPathmethod for the tableview delegate, you set the image property to the image view depending on the cell selected.