我正在推销一款iphone应用,设计师希望使用Georgia显示列表项。这不是什么大不了的事,但他希望他们看起来像小型帽子。
这可以在iPhone OS3中实现吗?
答案 0 :(得分:0)
我假设'list item'表示UITableViewCell
;如果是这样,您可以通过在textLabel.font
委托方法中设置cellForRowAtIndexPath
属性来更改字体系列和大小:
- (UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
// setup cell
cell.textLabel.font = [UIFont fontWithName:@"Georgia" size:10];
// return cell
}
更新:啊,我刚注意到你正在寻找小帽子,而不是小字体;哎呦。据我所知,没有简单的方法可以做到这一点。您可以尝试自己加载小型大写字体,这似乎是ridiculously painful。