在項目比擬成熟的基本上,碰到了如許一個需求,運用中須要引入新的字體,須要改換一切Label的默許字體,然則同時,關於一些特別設置了字體的label又不須要改換。乍看起來,這個成績確切非常辣手,起首項目比擬年夜,一個一個設置一切應用到的label的font任務量是偉大的,而且在很多靜態展現的界面中,能夠會漏失落一些label,發生bug。其次,項目中的label起源其實不獨一,有效代碼創立的,有xib和storyBoard中的,這也將糟蹋很年夜的精神。這類情形下,我們能夠會有上面兩種處置方法。
1、通俗辦法
在一個UILabel 應用分歧的色彩或分歧的字體來表現字符串,在IOS 6 今後我們可以很輕松的完成這一點,官方的API 為我們供給了UILabel類的attributedText, 應用分歧色彩和分歧字體的字符串,我們可使用NSAttributedText 和 NSMutableAttributedText 類來完成。
實際代碼:
.h 文件
@interface ViewController : UIViewController
.m文件 在viewDidLoad辦法中添加以下代碼:
@property (nonatomic, strong) IBOutlet UILabel *attrLabel;
- (IBAction)next:(id)sender;
@end
self.title = @"For IOS 6 & later";
NSMutableAttributedString *str = [[NSMutableAttributedString alloc] initWithString:@"Using NSAttributed String"];
[str addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(0,5)];
[str addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(6,12)];
[str addAttribute:NSForegroundColorAttributeName value:[UIColor greenColor] range:NSMakeRange(19,6)];
[str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Arial-BoldItalicMT" size:30.0] range:NSMakeRange(0, 5)];
[str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"HelveticaNeue-Bold" size:30.0] range:NSMakeRange(6, 12)];
[str addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"Courier-BoldOblique" size:30.0] range:NSMakeRange(19, 6)];
attrLabel.attributedText = str;
後果圖:
假如想在IOS6.0之前版本完成這個後果,須要應用到一個第三方庫TTTAttributedLabel,同時還有導入CoreText.frame框架.
2、應用runtime全局修正UILabel的默許字體
這是最簡略便利的辦法,我們可使用runtime機制調換失落UILabel的初始化辦法,在個中對label的字體停止默許設置。由於Label可以從initWithFrame、init和nib文件三個起源初始化,所以我們須要將這三個初始化的辦法都調換失落。
起首,我們創立一個UILabel的種別:
#import <UIKit/UIKit.h>
@interface UILabel (YHBaseChangeDefaultFont)
@end
在個中參加以下代碼:
#import "UILabel+YHBaseChangeDefaultFont.h"
#import <objc/runtime.h>
@implementation UILabel (YHBaseChangeDefaultFont)
/**
*每一個NSObject的子類都邑挪用上面這個辦法 在這裡將init辦法停止調換,應用我們的新字體
*假如在法式中又特別設置了字體 則特別設置的字體不會受影響 然則不要在Label的init辦法中設置字體
*從init和initWithFrame和nib文件的加載辦法 都支撐改換默許字體
*/
+(void)load{
//只履行一次這個辦法
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
Class class = [self class];
// When swizzling a class method, use the folloWing:
// Class class = object_getClass((id)self);
//調換三個辦法
SEL originalSelector = @selector(init);
SEL originalSelector2 = @selector(initWithFrame:);
SEL originalSelector3 = @selector(awakeFromNib);
SEL swizzledSelector = @selector(YHBaseInit);
SEL swizzledSelector2 = @selector(YHBaseInitWithFrame:);
SEL swizzledSelector3 = @selector(YHBaseAwakeFromNib);
Method originalMethod = class_getInstanceMethod(class, originalSelector);
Method originalMethod2 = class_getInstanceMethod(class, originalSelector2);
Method originalMethod3 = class_getInstanceMethod(class, originalSelector3);
Method swizzledMethod = class_getInstanceMethod(class, swizzledSelector);
Method swizzledMethod2 = class_getInstanceMethod(class, swizzledSelector2);
Method swizzledMethod3 = class_getInstanceMethod(class, swizzledSelector3);
BOOL didAddMethod =
class_addMethod(class,
originalSelector,
method_getImplementation(swizzledMethod),
method_getTypeEncoding(swizzledMethod));
BOOL didAddMethod2 =
class_addMethod(class,
originalSelector2,
method_getImplementation(swizzledMethod2),
method_getTypeEncoding(swizzledMethod2));
BOOL didAddMethod3 =
class_addMethod(class,
originalSelector3,
method_getImplementation(swizzledMethod3),
method_getTypeEncoding(swizzledMethod3));
if (didAddMethod) {
class_replaceMethod(class,
swizzledSelector,
method_getImplementation(originalMethod),
method_getTypeEncoding(originalMethod));
} else {
method_exchangeImplementations(originalMethod, swizzledMethod);
}
if (didAddMethod2) {
class_replaceMethod(class,
swizzledSelector2,
method_getImplementation(originalMethod2),
method_getTypeEncoding(originalMethod2));
}else {
method_exchangeImplementations(originalMethod2, swizzledMethod2);
}
if (didAddMethod3) {
class_replaceMethod(class,
swizzledSelector3,
method_getImplementation(originalMethod3),
method_getTypeEncoding(originalMethod3));
}else {
method_exchangeImplementations(originalMethod3, swizzledMethod3);
}
});
}
/**
*在這些辦法中將你的字體名字換出來
*/
- (instancetype)YHBaseInit
{
id __self = [self YHBaseInit];
UIFont * font = [UIFont fontWithName:@"這裡輸出你的字體名字" size:self.font.pointSize];
if (font) {
self.font=font;
}
return __self;
}
-(instancetype)YHBaseInitWithFrame:(CGRect)rect{
id __self = [self YHBaseInitWithFrame:rect];
UIFont * font = [UIFont fontWithName:@"這裡輸出你的字體名字" size:self.font.pointSize];
if (font) {
self.font=font;
}
return __self;
}
-(void)YHBaseAwakeFromNib{
[self YHBaseAwakeFromNib];
UIFont * font = [UIFont fontWithName:@"這裡輸出你的字體名字" size:self.font.pointSize];
if (font) {
self.font=font;
}
}
@end
在下面的辦法中寫入我們想要UILabel默許顯示的字體,我們分離從init,initWithFrame和nib文件創立一個UILabel添加到視圖上,不做任何其他的操作:
UILabel * label = [[UILabel alloc]initWithFrame:CGRectMake(20, 100, 280, 30)];
label.text = @"你是從initWithFrame來的label";
UILabel * label2 = [[UILabel alloc]init];
label2.frame= CGRectMake(20, 200, 280, 30);
label2.text = @"你是從init來的label";
[self.view addSubview:label];
[self.view addSubview:label2];
運轉後果以下,可以看出,字體全體換失落了:
【iOS App開辟中修正UILabel默許字體的辦法】的相關資料介紹到這裡,希望對您有所幫助! 提示:不會對讀者因本文所帶來的任何損失負責。如果您支持就請把本站添加至收藏夾哦!