我有以下代码将单元格的背景设置为图像:
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 150, 55)];
imageView.image = [UIImage imageNamed:@"cellBackground.png"];
cell.backgroundView = imageView;
但遗憾的是背景图片减少了一半,IDK原因为:
感谢。
答案 0 :(得分:2)
如果您使用默认的UITableViewCell,那么这应该可以解决您的问题:
cell.textLabel.backgroundColor = [UIColor clearColor];
答案 1 :(得分:1)
您也可以尝试这样做;
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 150, 55)];
imageView.image = [UIImage imageNamed:@"cellBackground.png"];
cell.contentView.addSubView = imageView;
或者你也可以试试这个;
YourTableView.setBackgroundColor = [UIColor clearColor];
希望这会有所帮助