1

我有一个自定义表格视图,它将填充动态对象以形成一个列表。我正在尝试在单元格中图像的一半顶部设置渐变叠加。

我在 interface.builder 中设置了布局。

以下是我的问题: - 我遇到的问题是我的渐变叠加层似乎每次都会重新绘制,导致它在向上/向下滚动后变成纯色叠加层。有人知道如何克服这个问题吗?

谢谢!


- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    CustomTableViewCell *cell = (CustomTableViewCell* )[tableView dequeueReusableCellWithIdentifier:@"TableCellId"];
    if(cell == nil){
        cell = [[CustomTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"TableCellId"];
    }

    UIImageView *item_image = (UIImageView *)[cell viewWithTag:@"cell_image"];
    NSString *url_image = [NSString stringWithFormat:@"%@%@", URL_SERVER_HOST, item_pic];

    [item_image setImageWithURL:[NSURL URLWithString:url_image]];

    //Currently get called when new cell is loaded
    UIView *overlay = (UIView *)[cell viewWithTag:@"cell_overlay"];
    CAGradientLayer *gradient = [CAGradientLayer layer];
    gradient.frame = overlay.bounds;
    gradient.colors = [NSArray arrayWithObjects:(id)[[UIColor clearColor] CGColor], (id)[[UIColor blackColor] CGColor], nil];
    [overlay.layer insertSublayer:gradient atIndex:0];

    UILabel * item_name = (UILabel *)[cell viewWithTag:@"cell_name"];
    item_name.text  = @"test text";

    return cell;
}
4

2 回答 2

2

将渐变相关的代码放入if (cell == nil)中,这样cell在复用的时候就不会再添加渐变层了

于 2013-03-06T07:32:54.640 回答
0

在应用渐变之前,我只是将叠加子层设置为 nil。只需在之前写下一行[overlay.layer insertSublayer:gradient atIndex:0];

overlay.layer.sublayers = nil;

于 2016-01-23T11:33:52.647 回答