我将项目切换到iOS 10和XCode 8的新beta版本。在我使用的应用程序的所有三个区域中:
imageView.layer.cornerRadius = imageView.frame.size.width/2
imageView.clipsToBounds = true
关联的图像完全不显示。我尝试清理项目以及构建文件夹,重新启动设备,尝试使用各种模拟器,重新添加imageView,以编程方式设置关联的
UIImage
,而不是从 Assets 中选择一个。无论
clipsToBounds
是masksToBounds
还是true
,删除false
线都会显示矩形图像。如何在XCode8/iOS10中制作圆形图像?编辑:该项目是Swift 2.x,尚未更新为Swift 3.0语法。
最佳答案
我遇到了同样的问题,在所有圆角/layoutIfNeeded
问题解决之前,先调用clipsToBounds
。 iOS 10 GM with xcode 8 GM causes views to disappear due to roundedCorners & clipsToBounds