如何将UIButton放置在另一个圆形轮廓图像的UIImageView上?

时间:2017-08-07 09:38:09

标签: ios swift3 uiimageview uibutton autolayout

我的应用程序中有一个配置文件设置页面,因此我需要在配置文件图像上放置另一个UIButton,以便从相机或照片库中选择图像。所以我很困惑如何在故事板中放置它的约束。

个人资料图片随着屏幕尺寸的增长而增长,但我希望放在底部的UIButton也会增加。

显示个人资料照片的UIImageView的约束:

UIImageView constraints . It grows along with Size

UIButton包含以下图片:

UIButton Image

现在我想将此按钮与上面显示的图像放在个人资料图片视图中。

它需要什么样的约束才能使它完全位于轮廓图像视图的底部并随着尺寸的增长而增长。

The selected UI component is a Button . I need to set the constraints for this

1 个答案:

答案 0 :(得分:0)

只需将Y位置的约束更改为button.bottom = profileImage.bottom - 10或您想要放置的常量。这样,按钮将始终位于图像的底部,并且Autolayout将根据您的约束正确处理调整大小。