我试图在使用滚动超过表格的顶部或底部后,想象如何更改普通uitableview的背景颜色。不知道它叫什么,但如果你看邮件应用程序,如果你向下滚动,虽然已经在桌子的顶部,背景是深灰色,略有渐变。有谁知道我如何实现这个?
答案 0 :(得分:2)
tableView.backgroundColor = [UIColor redColor];
将为您的表格视图提供红色背景
其他选项包括
tableView.backgroundColor = [UIColor colorWithPatternImage:anImage];
tableView.backgroundColor = [UIColor colorWithRed: green: blue: alpha: ];
tableView.backgroundColor = [UIColor colorWithHue: saturation: brightness: alpha: ];
tableView.backgroundColor = [UIColor colorWithCGColor:cgColor];
答案 1 :(得分:0)
tableview.backgroundColor = [UIColor clearColor]; // you can write any color in place of clear color