Home > Enterprise >  I need help to design a button which attached to imageView
I need help to design a button which attached to imageView

Time:12-13

I am trying to build a imageview with a button that attached to itself for settings page. I want to tell users to click to image if they want to change it. So what I wanna to do is similar to : enter image description here

CodePudding user response:

I would make the origin of the frame of the button reference the frame of the profile photo. So the button is rendered in the same place relative to the photo no matter the size of the photo. Maybe something like this:

editButton.frame = CGRect(x: profileImageView.width - 60, y: profileImageView.height - 66, width: 50, height: 50)

You could also consider adding a tapGestureRecognizer to the photo to trigger the edit option.

  • Related