Apple 更改UITableViewCell
iOS 7 中的层次结构
使用 iOS 6.1 SDK
<UITableViewCell>
| <UITableViewCellContentView>
| | <UILabel>
使用 iOS 7 SDK
<UITableViewCell>
| <UITableViewCellScrollView>
| | <UITableViewCellContentView>
| | | <UILabel>
我的问题是UITableViewCellScrollView.layer.masksToBounds = TRUE
默认情况下,我需要它是假的。
我尝试了以下方法:
UIView * scrollView = [self.subviews objectAtIndex:0];
scrollView.layer.masksToBounds = NO;
和
[self.myLabel.superview.layer setMasksToBounds:NO];
但他们都没有改变UITableViewCellScrollView
. 我怎样才能访问这个滚动视图?