我对UITableviewCell有一个小问题。我正在使用代码:
UIView *cellBackView = [[UIView alloc] initWithFrame:CGRectZero];
cellBackView.backgroundColor = [UIColor colorWithPatternImage: [UIImage imageNamed:@"Navigation.png"]];
cell.backgroundView = cellBackView;
但看看发生了什么; http://cl.ly/070f1C3n143v0W1Y2g2Q
有人知道如何修复它吗?
答案 0 :(得分:3)
那是因为路上的标签(在背景前面) 添加这个,它应该是固定的
cell.textLabel.backgroundColor = [UIColor clearColor];