2つのUILabelを含むカスタムビューがあります。以前にフォントをカスタマイズしたいので、initWithCoderメソッドでカスタマイズしました。
@implementation HomeTitleView
@synthesize ticketLabel;
@synthesize monthLabel;
- (id) initWithCoder:(NSCoder *)aDecoder{
self = [super initWithCoder:aDecoder];
if (self) {
[monthLabel setFont:[UIFactory getFontForKey:@"home_month"]];
[ticketLabel setFont:[UIFactory getFontForKey:@"home_ticket"]];
}
return self;
}
@end
残念ながら、これは機能しませんでした。デバッガーを使用して、monthLabelとticketLabelの両方がnilであることがわかりました。誰もがこれをどのように解決できるか考えていますか?両方のラベルにアクセスできるようにするには、どのコールバックまたはメソッドを実装する必要がありますか?