如何在 iOS 的情节提要中使用编程定义的字体?

How to use programmatically defined font in storyboard in iOS?

我在情节提要中有很多相同样式的 UILabel 和按钮而且我还有一个字体列表,例如

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

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

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

文件: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

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

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