iOS App开发中修改UILabel默认字体的方法
在项目比较成熟的基础上,遇到了这样一个需求,应用中需要引入新的字体,需要更换所有label的默认字体,但是同时,对于一些特殊设置了字体的label又不需要更换。乍看起来,这个问题确实十分棘手,首先项目比较大,一个一个设置所有使用到的label的font工作量是巨大的,并且在许多动态展示的界面中,可能会漏掉一些label,产生bug。其次,项目中的label来源并不唯一,有用代码创建的,有xib和storyboard中的,这也将浪费很大的精力。这种情况下,我们可能会有下面两种处理方式。
一、普通方法
在一个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框架.
二、运用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默认字体的方法
-
iOS App使用设计模式中的模板方法模式开发的示例
-
详解iOS App开发中改变UIButton内部控件的基本方法
-
iOS App开发中Objective-C使用正则表达式进行匹配的方法
-
详解iOS App开发中UIViewController的loadView方法使用
-
iOS应用开发中矢量图的使用及修改矢量图颜色的方法
-
iOS App使用设计模式中的模板方法模式开发的示例
-
详解iOS App开发中改变UIButton内部控件的基本方法
-
详解iOS App开发中UIViewController的loadView方法使用
-
iOS应用开发中矢量图的使用及修改矢量图颜色的方法