应用程序运行时 UIImageView 发生变化
我有一个 UIImageView,边缘有一些我不想显示的东西。所以在 IB 中,我只是拉入边框的边缘并将视图模式设置为“中心”,这样它就会剪掉边缘。但是当我运行该应用程序时,它会显示它们。我应该为此寻找任何特定的设置或布尔值吗?
I have a UIImageView that has some stuff on the edges that I don't want to show. So in IB I just pulled in the edges of the border and made the view mode "center" so it clips off the edges. But when I run the app, it shows them. Any specific settings or BOOL's I should be looking at for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的:
clipsToBounds
属性。如果这不起作用,请尝试其layer
的masksToBounds
属性。Yep: the
clipsToBounds
property. If that doesn't work, try itslayer
'smasksToBounds
property.