码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 富文本

时间:2014-05-01 02:28:39      阅读:393      评论:0      收藏:0      [点我收藏+]

标签:com   http   blog   style   div   img   c   log   t   sp   ext   

富文本

http://pan.baidu.com/s/1pJnY8BL
把这里下载的文件夹拖进自己的工程
引入头文件
#import "OHAttributedLabel.h"
#import "OHParagraphStyle.h"
#import "OHTouchesGestureRecognizer.h"
 
引入这3个头文件
 
添加 CoreText.framework
 
 
// 创建富文本string
    NSMutableAttributedString* attrStr = \
        [NSMutableAttributedString attributedStringWithString:\
         @"还记得吗,窗外那被月光染亮的海洋\
         你还记得吗,是爱让彼此把夜点亮\
          为何后来我们用沉默取代依赖 曾经朗朗星空,渐渐阴霾\
          心碎离开,转身回到最初荒凉里等待 为了寂寞,是否找个人填心中空白\
          我们变成了世上,最熟悉的陌生人 今后各自曲折,各自悲哀\
          只怪我们爱得那么汹涌,爱得那么深 于是梦醒了搁浅了沉默了挥手了\
          却回不了神,如果当初在交会时能忍住了 激动的灵魂"];
[attrStr setTextColor:[UIColor whiteColor]];
    [attrStr setTextColor:[UIColor redColor] range:NSMakeRange(9,4)];
    [attrStr setTextIsUnderlined:YES range:NSMakeRange(9, 4)];
    [attrStr setTextColor:[UIColor greenColor] range:NSMakeRange(125,30)];
// 设置样式
    OHParagraphStyle* paragraphStyle = [OHParagraphStyle defaultParagraphStyle];
    paragraphStyle.textAlignment = kCTTextAlignmentLeft;
    paragraphStyle.lineBreakMode = kCTLineBreakByWordWrapping;
    paragraphStyle.firstLineHeadIndent = 0.f; // indentation for first line
    paragraphStyle.lineSpacing = 3.f; // increase space between lines by 3 points
    [attrStr setParagraphStyle:paragraphStyle];
    
 
    // 初始化富文本label
    OHAttributedLabel *label = \
        [[OHAttributedLabel alloc] initWithFrame:CGRectMake(0, 0, 300, 200)];
    label.attributedText = attrStr;
    label.center = self.view.center;
    
    // 添加进主视图
    [self.view addSubview:label];
以下是游贤代码
bubuko.com,布布扣
 
http://www.cnblogs.com/YouXianMing/p/3656900.html这个是设置富文本字体的https://github.com/daktales/UIFontWDCustomLoader需要把这里下载的两个文件夹拖入工程  想用什么字体就把字体从网上下载下来记住一定要是ttf格式的文件哦   拖进工程 然后引入头文件
然后获取字体URL  注册字体 设置字体风格
效果如下bubuko.com,布布扣
具体的demo请鉴桌面·备用·demo·FontStyle
相关的链接有http://www.cnblogs.com/YouXianMing/p/3656900.html感谢博主的分享

iOS 富文本,布布扣,bubuko.com

iOS 富文本

标签:com   http   blog   style   div   img   c   log   t   sp   ext   

原文地址:http://www.cnblogs.com/longyun/p/3700975.html

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