在iPhone上的TableView中设置自定义节标题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在iPhone上的TableView中设置自定义节标题相关的知识,希望对你有一定的参考价值。
This sinpet is extracted from a post of "Undefined Value", Kris Johnson's Blog.
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { if (sectionTitle == nil) { return nil; } // Create label with section title UILabel *label = [[[UILabel alloc] init] autorelease]; label.frame = CGRectMake(20, 6, 300, 30); label.backgroundColor = [UIColor clearColor]; label.textColor = [UIColor colorWithHue:(136.0/360.0) // Slightly bluish green saturation:1.0 brightness:0.60 alpha:1.0]; label.shadowColor = [UIColor whiteColor]; label.shadowOffset = CGSizeMake(0.0, 1.0); label.font = [UIFont boldSystemFontOfSize:16]; label.text = sectionTitle; // Create header view and add label as a subview UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, SectionHeaderHeight)]; [view autorelease]; [view addSubview:label]; return view; }
以上是关于在iPhone上的TableView中设置自定义节标题的主要内容,如果未能解决你的问题,请参考以下文章
Azure 应用服务在 ApplicationHost.config 中设置自定义 ConnectionTimeout