IOS7 中 UITableView 修改 header的样式和颜色
IOS7 中 UITableView 如何 修改 header的样式和颜色,只需要使用下面的方法就好了
-(UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { NSString *sectionTitle = [[self.list objectAtIndex:section] valueForKey:@"title"]; // Create header view and add label as a subview UIView *view = [[UIView alloc] initWithFrame:CGRectMake(10.0, 0.0, 320.0, 100.0)]; view.backgroundColor = [UIColor lightGrayColor]; // Create label with section title UILabel *label = [[UILabel alloc] init]; label.frame = CGRectMake(5.0, 12.0, 284.0, 24.0); label.textColor = [UIColor blackColor]; label.font = [UIFont systemFontOfSize:16.0]; label.text = sectionTitle; label.backgroundColor = [UIColor clearColor]; [view addSubview:label]; return view; }
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/537
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 Gowhich博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/537