是否有人知道如何为 tableview的每个部分设置表格的背景?
我已经有每个部分的标题图片......
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
UIImage *viewImage = [artwork imageWithSize: CGSizeMake (1024, 1024)];
UIImageView *imageView = [[UIImageView alloc] initWithImage:viewImage];
if (viewImage) {
return imageView;
} else {
return imageView;
}
}
...但是我没有看到如何更改每个tableview部分的背景的任何答案?
因为每个tableview部分需要有不同的背景图像,就像每个部分都有不同的标题图像一样。
谢谢!
答案 0 :(得分:0)
你也许可以做到这一点。
NSArray *imgArr = @[@"first.png",@"second.png",@"third.png"];
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:imgArr[secetion]]];
imageView.frame = .....;
return imageView;