HTML email message body with UIActivityViewController

霸气de小男生 提交于 2019-12-06 15:14:52

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.

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