亲爱的程序员,
我正在创建一个 customLabel 类,如下所示:
@interface CustomLabel : UILabel {
NSString *customBundlePath;
}
@implementation CustomLabel
- (void)drawTextInRect:(CGRect)rect
{
NSString *result=[self getLocalvalue:self.text];
[result drawInRect:rect withFont:self.font];
}
-(void)awakeFromNib
{
NSLog(@"%@",self.text);
}
-(NSString *)getLocalvalue:(NSString*)textTolocalize
{
// some code
return localizedText;
}
但我的问题是,在笔尖加载时,drawTextInRect 方法只为 Label 调用一次。
如果 popig 再次出现视图,那么每个 customLabel 对象将执行哪个方法?
请帮帮我。提前致谢。