copy HTML to UIPasteboard

后端 未结 4 1770
别跟我提以往
别跟我提以往 2021-01-03 09:07

I want to transfer HTML from my app to the iPhone mail application. I already have the HTML text - lest say <span style=\'color:red\'>Test</span> I can place this to U

4条回答
  •  鱼传尺愫
    2021-01-03 09:30

    I've got HTML copy working so it pastes into the built-in Mail and Notes apps properly. It looks like this:

    NSString *htmlContent = @"This is HTML";
    NSString *content = @"This is HTML!";
    NSDictionary *dict = @{(NSString *)kUTTypeText: content, (NSString *)kUTTypeHTML: htmlContent};
    [[UIPasteboard generalPasteboard] setItems:@[dict]];
    

    To get access to those type constants, you need to import this:

    #import 
    

提交回复
热议问题