I am creating an application using the Twitter API. I have retrieved the profile image and it is shown fine in my application.
Now I need to add an embedded link to the profile image so that clicking on that image will navigate to the users profile page on twitter. How would this be done?
Place a custom UIButton on the top of the UIImageView with the profile image and assign a Touch Up Inside action with sth like that:
This will launch Safari with the address given.
You can also use a sole UIButton (without UIImageView) – in that case just assign a user profile image to the image property of the button.