ios swift 3 xcode8 beta圆形imageView

前端之家收集整理的这篇文章主要介绍了ios swift 3 xcode8 beta圆形imageView前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用我的项目,我使用以下代码,以使我的图像为圆形:
profileImage.layer.cornerRadius = profileImage.frame.size.width / 2
profileImage.clipsToBounds = true
@H_404_4@我也使用禁忌使我的图像使其宽=高和其他限制.

@H_404_4@将我的项目升级到xcode 8 beta和swift 3.我设置为舍入的所有图像视图都消失了,当我删除代码进行四舍五入或者我删除所有的约束,他们再次出现.
但我仍然需要他们圆润.任何人都可以帮我解决问题.
谢谢

解决方法

我有同样的问题,解决方案只是在您的层修改之前移动一行代码.
尝试应用布局更改:
self.view.layoutIfNeeded()
@H_404_4@在你的代码之前:

profileImage.layer.cornerRadius = profileImage.frame.size.width/2
profileImage.clipsToBounds = true
@H_404_4@要么

@H_404_4@将与框架/图层相关的代码放在viewDidLayoutSubviews()方法中:

override func viewDidLayoutSubviews() {

    profileImage.layer.cornerRadius = profileImage.frame.size.width/2
    profileImage.clipsToBounds = true

}
原文链接:https://www.f2er.com/iOS/337385.html

猜你在找的iOS相关文章