Can we add image together with text in a picker view?
Anyone please help!
Can we add image together with text in a picker view? Anyone please help!
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.
In picker view’s delegate there is
method, where you can create your custom view (may be UIView with UILabel and UIImageView in your case) and return it – so UIPickerView will use it for row representation. See reference for more information.
If you return
UIView*in this method you may also need to set itsuserInteractionEnabledproperty to NO, otherwise picker will not select rows if you tap them.