1

我想将富文本保存到 CoreData,然后打印出来。

我想要什么样的文字?-> 1. 字体颜色 2. 粗体 3. 下划线 3. 链接 4. 字体大小

我怎样才能做到这一点?

PS 在“网络世界”中您输入“<strong>bold text</strong> 等”。

4

1 回答 1

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
于 2012-05-04T19:05:22.867 回答