如何在iOS中的故事板中使用以编程方式定义的字体?

时间:2015-03-19 05:35:20

标签: ios xcode-storyboard

我在故事板中有很多UILabel和按钮,风格相同而且我还有一个字体列表,如

#define FLOAT_F1  [UIFont systemFontOfSize:18]
#define FLOAT_F2  [UIFont systemFontOfSize:16]

我可以在故事板中使用这些定义吗?因此,如果标准发生变化,我不必在故事板中逐一更改它。

1 个答案:

答案 0 :(得分:1)

您可以创建自定义标签,如下所示。

文件:UICustomLabel.h

@interface UICustomLabel : UILabel

@end

文件:UICustomLabel.m

@implementation UICustomLabel
- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code
    }
    return self;
}
- (id)initWithCoder:(NSCoder *)coder {
    self = [super initWithCoder:coder];
    if (self) {

        // [UIFont fontWithName:@"AmericanTypewriter-Bold" size:self.font.pointSize]
        [self setFont:[UIFont fontWithName:@“Font_Name" size:self.font.pointSize]];
    }
    return self;
}
@end

然后将类UICustomLabel分配给您需要设置的所有故事板中的每个标签,如下所示。

Set Custom Class To Label

这对你有用。如果您有任何问题,请告诉我。