iOS 富文本控件

 

使用方式:

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];

 

猜你喜欢

转载自374016526.iteye.com/blog/2054589