我创建了UILabel
在字体属性更改时会做额外工作的类别。
我选择了类别而不是子类,因此我不必更改所有 XIB 文件中所有标签的类别。我只是将此类别声明添加到前缀标题中,并且类别在整个项目范围内都是可见的。
实现文件:
//
// UILabel+XIBCustomFonts.m
#import "UILabel+XIBCustomFonts.h"
@implementation UILabel (XIBCustomFonts)
BOOL comes_from_nib = NO;
-(id)initWithCoder:(NSCoder *)aDecoder_{
self = [super initWithCoder:aDecoder_];
if (self) {
comes_from_nib = YES;
}
return self;
}
-(void)setFont:(UIFont *)font_{
[super setFont:font_];
NSLog(@"Setting from for label from XIB for name:%@ size: %.1f - do font theme replacement if needed", self.font.fontName, self.font.pointSize);
}
@end
令人惊讶的是以下日志的崩溃:
-[UIButtonLabel setFont:]: unrecognized selector sent to instance 0x9ad1b70
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIButtonLabel setFont:]: unrecognized selector sent to instance 0x9ad1b70'
UIButtonLabel 是从哪里来的?
即使我在setFont:
setter 中进行额外的类检查,也会发生这种情况:
if ([self class] != [UILabel class] || !comes_from_nib) {
[super setFont:font_];
return;
}
有没有办法在不子类化的情况下覆盖 UILabel 中的 setFont: setter?