iPhone字体:设置小型大写字母

时间:2010-04-01 07:24:32

标签: iphone cocoa-touch ios fonts typography

我正在推销一款iphone应用,设计师希望使用Georgia显示列表项。这不是什么大不了的事,但他希望他们看起来像小型帽子。

这可以在iPhone OS3中实现吗?

1 个答案:

答案 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