我正在使用自定义图形再现原始的UITableView节标题。

UITableView节标题中的字体大小,字体颜色,阴影颜色和偏移量是多少?

谢谢。

最佳答案

UILabel * headerLabel = [[UILabel alloc] initWithFrame:CGRectZero];
headerLabel.backgroundColor = [UIColor clearColor];
headerLabel.opaque = NO;
headerLabel.textColor = [UIColor blackColor];
headerLabel.highlightedTextColor = [UIColor whiteColor];
headerLabel.font = [UIFont boldSystemFontOfSize:20];
headerLabel.frame = CGRectMake(10.0, 0.0, 300.0, 44.0);


希望这能满足您的要求...

关于iphone - UITableView节标题中的字体大小,字体颜色,阴影颜色和偏移量是多少?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7281640/

10-13 03:46