MFMailComposerViewController在其郵件正文中顯示URL作爲純文本而不是可點擊鏈接。無論如何,我可以做到這一點?MFMailComposerViewController無法識別URL爲鏈接
0
A
回答
2
設置爲HTML,使用<a href="link">The link</a>
使用– setMessageBody:isHTML:
。平原就像它被稱爲平原一樣。
1
MFMailComposeViewController *composer = [[MFMailComposeViewController alloc] init];
composer.mailComposeDelegate = self;
[composer setMessageBody:message isHTML:YES];
NSMutableString *body = [NSMutableString string];
[body appendString:@"<h1>Hello User!</h1>\n"];
[body appendString:@"<a href=\"http://www.mysite.com/path/to/link\">Click Me!</a>\n"];
[composer setMessageBody:body isHTML:YES];
希望這適用於你。快樂編碼:)
1
是的,它是可能的,你能做到這樣:
MFMailComposeViewController *composer = [[MFMailComposeViewController alloc] init]; composer.mailComposeDelegate = self;
[composer setSubject:subject];
[composer setMessageBody:message isHTML:YES];
//Message is just a NSString with HTML Content and you can have all the HTML Contents in it.
相關問題
- 1. 無法識別鏈接類
- 2. Mysqli_real_escape_string無法識別鏈接
- 3. facebook鏈接無法識別爲gif
- 4. 克++鏈接程序無法識別-Bstatic
- 5. GNU鏈接:文件無法識別
- 6. Python無法識別軟鏈接變更
- 7. rails無法識別sym鏈接目錄
- 8. 縮短URL無法識別
- 9. readHTMLTable無法識別URL
- 10. HttpGet無法識別url
- 11. 文件格式無法識別;視爲鏈接器腳本
- 12. 爲什麼我的鏈接列表類型無法識別?
- 13. 接口無法識別
- 14. Perl -e文件測試無法識別無效鏈接
- 15. 使用NSURL無法識別URL變量
- 16. UIWebView無法識別的URL地址
- 17. 無法識別Web服務URL更改
- 18. #標籤的URL請求無法識別
- 19. Contenteditable /無法識別$ _GET變量從URL
- 20. UI路由器無法識別URL
- 21. PDFBox不識別鏈接
- 22. bash如何識別鏈接?
- 23. c中的鏈接識別#
- 24. 識別h:outputText中的鏈接
- 25. IIS在通過Word文件鏈接時無法識別cookie
- 26. Android上的whatsapp無法識別完整網址鏈接
- 27. QnA Maker無法識別使用標記語言的鏈接
- 28. normalizeResponse無法識別嵌套關係之間的鏈接
- 29. React Native - iOS無法識別分支鏈接
- 30. on無法識別添加的鏈接元素
添加烏爾行代碼在烏爾問題 – Saad