自定义Label的字体颜色和大小

Posted 想吃天鹅肉的井底之蛙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义Label的字体颜色和大小相关的知识,希望对你有一定的参考价值。

废话不多说,直接上代码,很简单,都是原生的,注意一点就是label不能用.text,要用.attributedText!!

#import "ViewController.h"

@interface ViewController () <UITableViewDataSource,UITableViewDelegate>
{
    NSMutableArray *_fontArray;
}

@property (weak, nonatomic) IBOutlet UITableView *tableView;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    self.tableView.rowHeight = 80.0f;
    _fontArray = [[NSMutableArray alloc] initWithCapacity:242];
    for (NSString * familyName in [UIFont familyNames]) {
        NSLog(@"Font FamilyName = %@",familyName); //*输出字体族科名字
        for (NSString * fontName in [UIFont fontNamesForFamilyName:familyName]) {
            NSLog(@"    %@",fontName);
            [_fontArray addObject:fontName];
        }
    }
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return _fontArray.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *ID = @"cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:ID];
    }
    NSString * testStr  = @"It has 15 words";
    NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:testStr];
    [str addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(0,3)];
    [str addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(3,4)];
    [str addAttribute:NSForegroundColorAttributeName value:[UIColor greenColor] range:NSMakeRange(7,4)];
    [str addAttribute:NSFontAttributeName value:[UIFont fontWithName:_fontArray[indexPath.row] size:30] range:NSMakeRange(5, 6)];
    cell.textLabel.attributedText = str;
    cell.detailTextLabel.text = [NSString stringWithFormat:@"字体名字:%@",_fontArray[indexPath.row]];
    return cell;
}

@end

以上是关于自定义Label的字体颜色和大小的主要内容,如果未能解决你的问题,请参考以下文章

ios7以上自定义导航栏标题的字体大小及颜色的方法

VB中如何设置调整label的字体、大小和颜色?

VB中如何设置调整label的字体、大小和颜色?

java中怎么设置label的字体大小及颜色显示

Android SearchView 自定义SearchIcon和字体颜色大小

python使用matplotlib可视化为可视化图像添加标题(title)自定义标题的字体格式字体大小字体颜色等