如何获得透明的表视图

时间:2013-11-18 08:51:34

标签: ios uitableview

我们可以使表格视图透明,以便放回到表格视图的图像可见吗?

我希望表格单元看起来透明。

1 个答案:

答案 0 :(得分:0)

要将某个UI元素设置为在代码中透明,您可以将backgroundColor设置为[UIColor clearColor]

您可以在以下位置创建单元格时实现它:

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyIdentifier"];
  if (cell == nil) {
     cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"MyIdentifier"];
  }
  cell.backgroundColor = [UIColor clearColor];
  return cell;
}