我想将富文本保存到CoreData,然后将其打印出来。
我想要什么样的文字? - > 1.字体颜色 大胆 3.下划线 3.链接 4.字体大小
我该怎么做?
P.S。在“网络世界”中你放了“< strong>粗体文字< / strong>等等。”
答案 0 :(得分:1)
这是一个非常简单的例子。在您的情况下,您只需将html字符串存储到核心数据模型中,然后像我在下面那样显示它。
#import "ViewController.h"
@implementation ViewController
#pragma mark - View lifecycle
- (void)viewDidLoad{
[super viewDidLoad];
UIWebView *webView = [[UIWebView alloc] initWithFrame:self.view.bounds];
[self.view addSubview:webView];
NSString *htmlRichText = @"<html><body><p><strong>HEY</strong> here's some text</p></body></html>";
[webView loadHTMLString:htmlRichText baseURL:nil];
}
@end