我需要减少表视图标题的字体大小。我的字符串值稍微长一点,它不适合标题。所以计划减小规模。任何人都知道如何减小大小,以便我可以将字符串添加到我的表视图标题。
提前致谢, 世斌
答案 0 :(得分:2)
您当前如何在表格视图的标题中设置字符串?
我想你正在将表的标题视图设置为UILabel对象:
UILabel *headerLabel = [[[UILabel alloc] initWithFrame: CGRectMake(0, 0, 320, 50)] autorelease];
headerLabel.font = [UIFont systemFontOfSize: 14];
headerLabel.text = @"Nice and Long Table View Header Label String";
tableView.tableHeaderView = headerLabel;
你能设置标签的字体吗?