更改节标题标题的背景颜色(普通表格视图)
我的应用程序看起来就像 iPhone 上的默认地址簿应用程序。对于每个字母表,地址簿中都有一个灰色渐变背景颜色的部分标题(A、B...)。是否可以将该默认颜色覆盖为其他色调颜色?
My app looks just like the default address book app on iphone. For each alphabet there is a section header in the address book( A, B . .) in gray gradient background color. Is it possible to override that default color to some other tint color ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过在 UITableViewDelegate 中实现以下方法来替换 UITableView 的节标题:
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
您可能还想实现height 方法以确保新的剖面视图正确显示:
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
要更改剖面标题的颜色,请创建一个带有其中包含 UIImageView 和用于该部分文本的 UILabel。将图像添加到 UIImageView 以获得您想要的背景外观。
AFAIK,您无法操纵剖面视图的tintColor。
You can replace the section headers of a UITableView by implementing the following method in the UITableViewDelegate:
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
You will probably also want to implement the height method to ensure your new section view displays correctly :
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
To change the colour of the section header, create a UIView with a UIImageView within it, and a UILabel for the text of the section. Add an image to the UIImageView for how you want the background to look.
AFAIK, you can't manipulate the tintColor of the section view.