HTML email message body with UIActivityViewController

为君一笑 提交于 2019-12-08 09:08:34

问题


Without subclassing UIActivity, is it possible to use UIActivityViewController (UIActivityTypeMessage) to share a html message via the Mail app?

When I passed the HTML as NSString, the body shows the html tags (e.g. ) in the message body which is not what I want.


回答1:


Make sure the string you pass into the activity includes <html. UIKit's internal UIMailActivity class explicitly checks for the presence of <html to determine if the message is HTML or plain text.

[r12 rangeOfString:@"<html" options:NSCaseInsensitiveSearch range:0x0];

Note that while UIActivity is documented that it can send HTML messages, this exact trigger mechanism isn't part of the API contract. Technically, it could break in future versions.



来源:https://stackoverflow.com/questions/19695877/html-email-message-body-with-uiactivityviewcontroller

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!