0

我需要减小表格视图标题的字体大小。我的字符串值有点长,它不适合标题。所以打算缩小尺寸。任何人都知道如何减小大小,以便我可以将字符串添加到我的表格视图标题中。

提前致谢,世斌

4

1 回答 1

1

您当前如何在表格视图的标题中设置字符串?

我想您正在将表格的标题视图设置为 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;

你可以像上面那样设置标签的字体吗?

于 2009-11-09T04:52:23.993 回答