UICollectionViewCell中设置contentmode为ScaleAspectFill导致图片边界溢出
问题描述:
如题,在UICollectionViewCell中添加了一个UIImageView,然后将UIImageView的contentMode设置为scaleAspectFill,但当给ImageView设置image后,实际显示的为image的大小,而不是设置的collectionViewCell的大小。
代码:
class MyCollectionViewCell: UICollectionViewCell {
var imageView: UIImageView?
override init(frame: CGRect) {
super.init(frame: frame)
imageView = UIImageView()
imageView?.contentMode = UIViewContentMode.ScaleAspectFill
self.contentView.addSubview(imageView!)
imageView?.snp_makeConstraints(closure: { (make) in
make.edges.equalTo(self.contentView)
})
}
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
}
显示结果:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是否尝试过把
clipsToBounds
属性设置为YES