您的位置:首页 > 移动开发 > IOS开发

IOS6 _内置字体库下载,轻松实现字体主体变换

2013-11-20 19:26 351 查看
IOS字体库



大家都发现在很多阅读类APP中都有很多字体风格,如果自己实现比较的麻烦,需要打包字体库内嵌到项目中,字体库又大,大多数情况下吃力不讨好;如果想做一个个性点APP,想要实现不同风格字体,有没有的能够简单的实现呢?

今天发现苹果官方的文档显示IOS6支持应用内字体库直接动态下载:

苹果官方动态下载链接:Demo工程

1、判断是否下载过该字体

[java] view
plaincopy

- (BOOL)isFontDownloaded:(NSString *)fontName {  

    UIFont* aFont = [UIFont fontWithName:fontName size:12.0];  

    if (aFont && ([aFont.fontName compare:fontName] == NSOrderedSame  

               || [aFont.familyName compare:fontName] == NSOrderedSame)) {  

        return YES;  

    } else {  

        return NO;  

    }  

}  



2、下载指定字体名称字体库

[java] view
plaincopy

// 用字体的PostScript名字创建一个Dictionary  

NSMutableDictionary *attrs = [NSMutableDictionary dictionaryWithObjectsAndKeys:fontName, kCTFontNameAttribute, nil];  

  

// 创建一个字体描述对象CTFontDescriptorRef  

CTFontDescriptorRef desc = CTFontDescriptorCreateWithAttributes((__bridge CFDictionaryRef)attrs);  

  

// 将字体描述对象放到一个NSMutableArray中  

NSMutableArray *descs = [NSMutableArray arrayWithCapacity:0];  

[descs addObject:(__bridge id)desc];  

CFRelease(desc);  

__block BOOL errorDuringDownload = NO;  

  

CTFontDescriptorMatchFontDescriptorsWithProgressHandler( (__bridge CFArrayRef)descs, NULL, ^(CTFontDescriptorMatchingState state, CFDictionaryRef progressParameter) {  

  

double progressValue = [[(__bridge NSDictionary *)progressParameter objectForKey:(id)kCTFontDescriptorMatchingPercentage] doubleValue];  

  

if (state == kCTFontDescriptorMatchingDidBegin) {  

NSLog(@"字体已经匹配");  

} else if (state == kCTFontDescriptorMatchingDidFinish) {  

if (!errorDuringDownload) {  

NSLog(@"字体%@ 下载完成", fontName);  

}  

} else if (state == kCTFontDescriptorMatchingWillBeginDownloading) {  

NSLog(@"字体开始下载");  

} else if (state == kCTFontDescriptorMatchingDidFinishDownloading) {  

NSLog(@"字体下载完成");  

dispatch_async( dispatch_get_main_queue(), ^ {  

// 可以在这里修改UI控件的字体  

});  

} else if (state == kCTFontDescriptorMatchingDownloading) {  

NSLog(@"下载进度 %.0f%% ", progressValue);  

} else if (state == kCTFontDescriptorMatchingDidFailWithError) {  

NSError *error = [(__bridge NSDictionary *)progressParameter objectForKey:(id)kCTFontDescriptorMatchingError];  

if (error != nil) {  

_errorMessage = [error description];  

} else {  

_errorMessage = @"ERROR MESSAGE IS NOT AVAILABLE!";  

}  

// 设置标志  

errorDuringDownload = YES;  

NSLog(@"下载错误: %@", _errorMessage);  

}  

  

return (BOOL)YES;  

});  

3、下载完更显字体UI,如上图所示!

kCTFontDescriptorMatchingDidFinishDownloading

在该方法中通过GCD (dispatch_async( dispatch_get_main_queue(), ^ {})更显UI界面,或者通过广播,KVO等都可以实现整个程序的字体风格的变更;

下载的子图库存在: ****Simulator/6.0/Library/Assets/com_apple_MobileAsset_Font/

简单的记录下:^_^!

[java] view
plaincopy

<div style="top:655px"><pre name="code" class="java"><pre></pre>  

<pre></pre>  

<div></div>  

<pre></pre>  

  

</pre></div>  

  

  

  

<!-- Baidu Button BEGIN -->  

<div id="bdshare" class="bdshare_t bds_tools get-codes-bdshare" style="float: right;">  

<a class="bds_qzone" title="分享到QQ空间" href="#"></a>  

<a class="bds_tsina" title="分享到新浪微博" href="#"></a>  

<a class="bds_tqq" title="分享到腾讯微博" href="#"></a>  

<a class="bds_renren" title="分享到人人网" href="#"></a>  

<a class="bds_t163" title="分享到网易微博" href="#"></a>  

<span class="bds_more">更多</span>  

<a class="shareCount" href="#" title="累计分享0次">0</a>  

</div>  

<!-- Baidu Button END -->  

  

  

<!--192.168.100.34-->  

<div class="article_next_prev">  

            <li class="prev_article"><span>上一篇:</span><a href="/liaoyp_ios_android/article/details/9333869">MKNetworkKit 详细介绍</a></li>  

            <li class="next_article"><span>下一篇:</span><a href="/liaoyp_ios_android/article/details/10494873">VVDocumenter - Xcod代码注释工具</a></li>  

</div>  

  

<!-- Baidu Button BEGIN -->  

<script type="text/javascript" id="bdshare_js" data="type=tools&uid=1536434" src="http://bdimg.share.baidu.com/static/js/bds_s_v2.js?cdnversion=384708"></script>  

  

<script type="text/javascript">  

    document.getElementById("bdshell_js").src = "http://bdimg.share.baidu.com/static/js/shell_v2.js?cdnversion=" + Math.ceil(new Date()/3600000)  

</script>  

<!-- Baidu Button END -->  

  

        <div id="digg" articleid="10459141">  

            <dl id="btnDigg" class="digg digg_enable">  

                <dt>顶</dt>  

                <dd>0</dd>  

            </dl>  

            <dl id="btnBury" class="digg digg_enable">  

                <dt>踩</dt>  

                <dd>0</dd>  

            </dl>  

        </div>  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: