Is there any special control available in UIKit to display a screen like iPhone’s app listing screen, i.e. Image with title at bottom
Is there any special control available in UIKit to display a screen like iPhone’s
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.
I am not aware of any controls available in the base libraries to do what you mention. However it would not be very difficult to simply subclass a UIImageView so that it includes a UILabel located just below the image. This can be done in many ways and is not very hard.
A basic idea would be something like:
Header:
Implementation:
And then to use it you would use code like:
Hope this helps.
Cheers.