首页 文章 精选 留言 我的

精选列表

搜索[工具库],共10000篇文章
优秀的个人博客,低调大师

iOS 富文本类RTLabel

本节关于RTLable基本介绍,原文来自https://github.com/honcheng/RTLabel RTLabel 基于富文本的格式,适用于iOS,类似HTML的标记。 RTLabel 基于UILabel类的拓展,能够支持Html标记的富文本显示,它是基于Core Text,因此也支持Core Text上的一些东西。 特点 粗体和斜体 颜色和大小 下划线 缩进 字距 行距 超链接 用法 1)将RTLabel.h 和 RTLabel.m 拖拽道你的工程中,导入Core Text.framework。添加头文件 1 #import "RTLabel.h" 2)创建一个RTLabel 1 2 3 4 NSString *sample_text = @ "<b>bold</b>,<i>italic</i> and <u>underlined</u> text, and <font face='HelveticaNeue-CondensedBold' size=20 color='#CCFF00'>text with custom font and color</font>" ; RTLabel *label = [[RTLabel alloc] initWithFrame:...]; [self addSubview:label]; [label setText:sample_text]; 3)支持以下标签 1 2 3 4 5 6 7 8 9 10 11 < b >Bold</ b > < i >Italic</ i > < bi >Bold & Italic</ bi > < u >underline</ u >, < u color = red >underline with color</ u > < a href = 'http://..' >link</ a > < uu >double underline</ uu > , < uu color = '#ccff00' >double underline with color</ uu > < font face = 'HelveticaNeue-CondensedBold' size = 20 color = '#CCFF00' >custom font</ font > < font face = 'HelveticaNeue-CondensedBold' size = 20 color = '#CCFF00' stroke = 1 >custom font with strokes</ font > < font face = 'HelveticaNeue-CondensedBold' size = 20 color = '#CCFF00' kern = 35 >custom font with kerning</ font > < p align = justify >alignment</ p > < p indent = 20 >indentation</ p > 最低要求 ARC -RTLabel使用了ARC,如果你的工程没有使用ARC,在编译时 compiler flag 上 添加 '-fobjc-arc'(如下图显示) XCode 4.4 或以上新版本。 本文转自新风作浪 51CTO博客,原文链接:http://blog.51cto.com/duxinfeng/1214526,如需转载请自行联系原作者

资源下载

更多资源
Mario

Mario

马里奥是站在游戏界顶峰的超人气多面角色。马里奥靠吃蘑菇成长,特征是大鼻子、头戴帽子、身穿背带裤,还留着胡子。与他的双胞胎兄弟路易基一起,长年担任任天堂的招牌角色。

腾讯云软件源

腾讯云软件源

为解决软件依赖安装时官方源访问速度慢的问题,腾讯云为一些软件搭建了缓存服务。您可以通过使用腾讯云软件源站来提升依赖包的安装速度。为了方便用户自由搭建服务架构,目前腾讯云软件源站支持公网访问和内网访问。

Spring

Spring

Spring框架(Spring Framework)是由Rod Johnson于2002年提出的开源Java企业级应用框架,旨在通过使用JavaBean替代传统EJB实现方式降低企业级编程开发的复杂性。该框架基于简单性、可测试性和松耦合性设计理念,提供核心容器、应用上下文、数据访问集成等模块,支持整合Hibernate、Struts等第三方框架,其适用范围不仅限于服务器端开发,绝大多数Java应用均可从中受益。

WebStorm

WebStorm

WebStorm 是jetbrains公司旗下一款JavaScript 开发工具。目前已经被广大中国JS开发者誉为“Web前端开发神器”、“最强大的HTML5编辑器”、“最智能的JavaScript IDE”等。与IntelliJ IDEA同源,继承了IntelliJ IDEA强大的JS部分的功能。

用户登录
用户注册