Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想让滚动条的背景颜色清晰,但我找不到它的属性。只是帮助我。
你是怎么给细胞上色的?看起来contentView单元格的 正在调整以适应部分索引视图。尝试backgroundView使用您的背景颜色在表格单元格上设置 a 。
contentView
backgroundView
将 UITableView 背景视图设置为 nil 以使其透明。
[tableView setBackgroundColor:[UIColor clearColor]]; tableView.opaque = NO; tableView.backgroundView = nil;
希望它可以帮助你。