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