我有两个图像放置在一个堆栈视图中。我想以编程方式将这两个方形图像转换为圆形,所以我使用以下代码。
class ProfileViewController: UIViewController {
@IBOutlet weak var image1: UIImageView!
@IBOutlet weak var image2: UIImageView!
override viewDidLoad(){
// Convert image one into circle
self.image1.layer.cornerRadius = self.image1.frame.height/2
self.image1.clipsToBounds = true
// Convert image two into circle
self.image2.layer.cornerRadius = self.image2.frame.height/2
self.image2.clipsToBounds = true
// Print the frames of these two images
print(self.image1.frame)
print(self.image2.frame)
}
}
在示例中,帧的 x 和 y 值无关紧要,但奇怪的是,尽管检查器选项卡上有值,但宽度和高度值最终都为零。
如果我在屏幕上添加一个按钮,然后打印出两个图像的帧,我会得到预期的宽度和高度值。因此,我假设堆栈视图在viewDidLoad()
方法触发后确定对象的尺寸。在这种情况下,获得实际帧尺寸以使两个图像四舍五入的最佳方法是什么?或者使用 frame 以外的值会是更好的解决方案吗?