最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
iOS UITextView加载有HTML标签的HTML代码示例
时间:2022-06-25 23:35:47 编辑:袖梨 来源:一聚教程网
在开发中,我们加载HTML最常用的是UIWebView,其实UITextView也可以加载HTML代码。
- (void)viewDidLoad {
[super viewDidLoad];
UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(0, 40, kScreenWidth, kScreenHeight - 50)];
[self.view addSubview:textView];
//HTML代码
NSString *htmlStr = @"
hiuehuirhfiefguihuiefuwifhewufcehsifhoifhiofhwohfwiohfwoicehicehiheifjkhuhuihwefhuiwhfibfiwehfurwhfuiwhfuiwefhuirwhfiw
hviurhrihvuerhviohvoiwehvewiohiowhviowvhoiheiohihuihguguygigdusichvregtgtgegtgvrtvtrbtrbtrbtrbtrbtbtvrgeggergrbrt
hiuehuirhfiefguihuiefuwifhewufcehsicehicehiheifjkhuhuihwefhuiwhfibfiwehfurwhfuiwhfuiwefhuirwhfiw
";
//对图片大小进行处理,适应屏幕宽度
NSString *newString = [htmlStr stringByReplacingOccurrencesOfString:@"
NSAttributedString *attributedString = [[NSAttributedString alloc] initWithData:[newString dataUsingEncoding:NSUnicodeStringEncoding] options:@{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType } documentAttributes:nil error:nil];
textView.attributedText = attributedString;
}
注意:在info.plist中配置:
注:
// 当前屏幕宽度
#define kScreenWidth [UIScreen mainScreen].bounds.size.width
// 当前屏幕高度
#define kScreenHeight [UIScreen mainScreen].bounds.size.height
相关文章
- 真三国无双起源朱和带钩获取方法分享 10-23
- 中国式相亲妮可心仪礼物介绍说明 10-23
- 中国式相亲林汐心仪礼物介绍说明 10-23
- 原神奈芙尔圣遗物怎么搭配-奈芙尔圣遗物及词条搭配推荐 10-23
- 中国式相亲无限永动机刷钱卡组玩法 10-23
- 中国式相亲好感度提升及送礼方法分享 10-23