0

我创建了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?

4

1 回答 1

4

您不能在类别中调用超级方法!绝不!当您使用类别来增强类的功能时,这是不可能的,您没有扩展类,您实际上完全覆盖了现有方法,您完全失去了原始方法。这就是出现您的错误的原因。

于 2012-09-18T10:37:28.737 回答