
Here in above figure sleeping like a baby is a link button.
I don’t want to place a UITextView as this simply opens up a pickerView
How can I create a link button of similar kind in iPhone?
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.
Use a UIWebView to display the text. You can supply HTML to link to a URL. Is that what you mean by link button? or what do you want to happen when that text is pressed? You could also subclass the UILabel and detect the touch down event and do something in response to that. Or but that text into a button and make the button look like the surrounding area but act like a button and use one of its control events to respond to the selection.