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