我和其他所有人一样,UITableViewCell剪切到它的界限。正如其他人正确指出的那样,单元格的contentView有一个新的超级视图。所以我这样做了:
- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *cellIdentifier = @"HomeTableViewCell";
ItemCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if(!cell)
{
cell = [[ItemCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
//add views here as subviews to cell.contentView. Set them tags and retrieve later.
}
cell.clipsToBounds = FALSE;
cell.layer.masksToBounds = FALSE;
cell.contentView.clipsToBounds = FALSE;
cell.contentView.layer.masksToBounds = FALSE;
cell.contentView.superview.clipsToBounds = FALSE;
cell.contentView.superview.layer.masksToBounds = FALSE;
[self loadCell:cell inTable:tableView atIndexPath:indexPath];
return cell;
}
loadCell: inTable: atIndexPath:
按标记检索单元格的子视图并加载适当的内容。这工作正常。没有其他提及clipToBounds
或layer.masksToBounds
。但是:当我重新加载所选单元格时,它会临时剪切到边界,然后它会触及上面的代码并使其正确。因此,大约1-2秒我将细胞剪掉。这就是ItemCell
内部发生的事情。我刚刚创建了这个类,看看是什么将clipToBounds
属性变为TRUE。
@implementation ItemCell
- (id) initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
if((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]))
{
[self addObserver:self forKeyPath:@"layer.masksToBounds" options:NSKeyValueObservingOptionNew context:nil];
[self addObserver:self forKeyPath:@"clipsToBounds" options:NSKeyValueObservingOptionNew context:nil];
}
return self;
}
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
NSNumber *nr = [change objectForKey:@"new"];
if(nr.intValue)
{
self.clipsToBounds = FALSE; // STAY FALSE!!
self.layer.masksToBounds = FALSE;
}
}
即使我们在转向TRUE时将它们设为FALSE,我仍然会在剪裁/未剪裁之间获得这种差距。它只是更小。这在iOS6上没有发生。当clipsToBounds
属性变为TRUE时,这是堆栈跟踪,您可以看到CALayer setMasksToBounds
被自动调用:
有没有人知道任何修复?谢谢!
答案 0 :(得分:3)
我似乎已经在我的代码中解决了这个问题。首先确保在Interface Builder中设置关于剪辑等的所有内容。然后,以下代码的全部或部分组合似乎是必要的:
在tableView:cellForRowAtIndexPath:
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
//ios7 hacks
[cell.contentView.superview setClipsToBounds:NO];
[cell.contentView setClipsToBounds:NO];
[cell setClipsToBounds:NO];
return cell;
}
在tableView:willDisplayCell:
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
//ios 7 cell background fix
[cell.contentView.superview setClipsToBounds:NO];
[cell.contentView setClipsToBounds:NO];
[cell setClipsToBounds:NO];
[cell setBackgroundColor:[UIColor clearColor]];
//ios 7 content clipping fix
[cell.contentView.superview setClipsToBounds:NO];
[cell.contentView setClipsToBounds:NO];
[cell setClipsToBounds:NO];
}