I have a UIText View that I need to populate with a link that can be gained from currentItem.link. But I can’t seem to work out how to populate the text view with the link.
I’m assuming you have to load the view with some sort of IBAction?
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 should be able to change the contents of a UITextView by setting its
textproperty. For example, in your view controller just do:If there’s no myTextView property in your view controller, declare an IBOutlet for it as a property and connect the text view to that in Interface Builder.