欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

iOS 富文本控件

程序员文章站 2024-01-30 09:11:06
...

 

使用方式:

NSString *t = [NSStringstringWithFormat:@"<a href=http://www.baidu.com ><font size = 22 color=#001100>百度 </font></a>"];

 

    RTLabelComponentsStructure *componentsDS = [RCURLLabelextractTextStyle:t];

    RCURLLabel *contentlbl = [[RCURLLabel alloc] initWithFrame:CGRectMake(10, 10, 300, 10)];

    contentlbl.componentsAndPlainText = componentsDS;

    [self addSubview:contentlbl];

    

    CGSize optimumSize = [contentlbl optimumSize];

    CGRect frame = [contentlbl frame];

    frame.size.height = (int)optimumSize.height;

 

    [contentlbl setFrame:frame];