這是我如何設置自定義字體在我的應用程序設置自定義字體
[self.titleLabel setFont:[UIFont fontWithName:@"FontName" size:self.font.pointSize]];
我得到的字體已被棄用。
如何解決這個問題?
//編輯
UIButtonCustom.h
#import <Foundation/Foundation.h>
@interface UIButtonCustom : UIButton
@end
UIButtonCustom.m
-(void)awakeFromNib
{
[super awakeFromNib];
[self.titleLabel setFont:[UIFont fontWithName:@"FontName" size:self.font.pointSize]];
}
titlelabel是一種'UILabel'類嗎? – 2012-03-16 20:35:00
['UILabel'](http://developer.apple.com/library/ios/#DOCUMENTATION/UIKit/Reference/UILabel_Class/Reference/UILabel.html)'font'屬性不會被棄用,因此它是安全的假設OP是從'font'被棄用的類繼承的。 – Joe 2012-03-16 20:37:36
我已更新我的問題 – OhDoh 2012-03-17 09:18:21