码迷,mamicode.com
首页 > 其他好文 > 详细

获取系统字体

时间:2015-06-29 14:32:59      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

 

代码:

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    NSLog(@"--系统的所有字体--%@",[self getAllSystemFonts]);
    NSLog(@"--系统当前字体--%@",[self getCurrentFont]);

}
#pragma -mark -functions
//获得系统的所有字体
- (NSArray*)getAllSystemFonts;
{
    NSMutableArray *array = [[NSMutableArray alloc] init] ;
    NSArray* familys = [UIFont familyNames];
    
    for (id obj in familys) {
        NSArray* fonts = [UIFont fontNamesForFamilyName:obj];
        for (id font in fonts)
        {
            [array addObject:font];
        }
    }
    return array;
}
//获得系统的当前字体
- (UIFont*)getCurrentFont
{
    //判断系统字体的size,返回使用的字体。
    UIFont *font = [UIFont systemFontOfSize:[UIFont systemFontSize]];
    return font;
}

 

获取系统字体

标签:

原文地址:http://www.cnblogs.com/yang-guang-girl/p/4607319.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!