不能在iOS 7.1中的UITableViewCell的contentView上设置clipToBounds

前端之家收集整理的这篇文章主要介绍了不能在iOS 7.1中的UITableViewCell的contentView上设置clipToBounds前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
iOS 7重新设计导致了UITableViewCells的视图层次结构的更改.单元格的内容视图被包装在一个名为UITableViewCellScrollView的私有类中.

在iOS 7中UITableViewCellScrollView将clipsToBounds设置为YES,UITableViewCellContentView将clipToBounds设置为NO.

在iOS 7.1中UITableViewCellScrollView将clipsToBounds设置为NO,UITableViewCellContentView将clipToBounds设置为NO.

如果您在iOS 7.1中调用[[self contentView] setClipsToBounds:YES]是否坚持.当在细胞上调用layoutSubviews时,UITableViewCellContentView将clipToBounds再次设置为NO.

[[self contentView] superview] setClipsToBounds:YES]在iOS 7.1中工作,并将UITableViewCellScrollView的clipToBounds设置为YES,但这是一个非常脆弱的解决方案.

覆盖布局在单元格上查看并调用[[self contentView] setClipsToBounds:YES]可以工作,但是另一个解决方案.

有没有人知道为什么这个变化已经做出了,而且更为强大的解决方案呢?

解决方法

评论中所讨论的,现在在iOS7.1中唯一的解决方案是在小区本身设置clipsToBounds.
原文链接:https://www.f2er.com/iOS/337282.html

猜你在找的iOS相关文章