如何在iPhone中为表格视图单元格(基于导航的应用程序)设置字体样式

时间:2012-06-09 05:24:08

标签: iphone xcode

请帮帮我。如何以编程方式为表格视图单元格设置不同的字体样式(表视图单元格中的时尚句子)

5 个答案:

答案 0 :(得分:15)

您可以按照本指南在您的应用上添加自定义字体。

Adding custom font on iphone

然后您可以调用此代码来设置字体和字体大小

cell.textLabel.font = [UIFont fontWithName:@"custom" size:12.0f]

答案 1 :(得分:8)

您可以在UIFont的帮助下设置它,请参阅此代码 -

cell.textLabel.textColor=[UIColor whiteColor];
cell.textLabel.font=[UIFont fontWithName:@"Arial Rounded MT Bold" size:15.0];
cell.textLabel.numberOfLines=2;
cell.textLabel.lineBreakMode=UILineBreakModeMiddleTruncation;
cell.textLabel.backgroundColor=[UIColor clearColor];

UITableViewCell的许多属性都改变了它的外观。 您也可以像这样在UITableViewCell上设置UILabel -

[cell.contentView addSubview:lblView];
//lblView is your UILabel you can set its UIFont whatever you want

谢谢!!

答案 2 :(得分:2)

如果您使用的是标准UITableViewCell,则可以访问"textLabel" property并设置字体&大小(你可以通过UILabel的font属性来做)。

答案 3 :(得分:0)

从iOS 4开始,可以使用自定义字体。这篇文章展示了如何将它们包含在您的项目中以及如何在您的视图中设置它们:http://blog.beefyapps.com/2010/06/custom-fonts-in-ios-4/

答案 4 :(得分:0)

您可以按以下方式添加字体

    cell.textLabel.font = [UIFont fontWithName:@"Arail" size:12.0f];

OR

根据需要提供字体名称

      cell.textLabel.font = [UIFont fontWithName:@"yourFontNameHere" size:12.0f];