【发布时间】:2014-05-06 15:31:00
【问题描述】:
我已经搜索了一下,但无法找到适当的回复,所以如果已经在 SO 上问过这个问题,请原谅我。
我想在我的 MFMailCompseViewController 中制作格式精美/样式精美的电子邮件。只是用一个很长的 HTML 表单做一个[NSString stringWithFormat...] 的问题,CSS 放在头顶上吗?有这种效果吗?
[NSString stringWithFormat:@"<!doctype html> <html> <head> <style type="text/css">
body {
color: white;
background-color: #414042 }
.p {
color: #111111;
text-size: 2em; }
</style>
</head>
<body>
<h1>This is my beautiful header </h1>
<p>This is my beautiful paragraph </p>
</body>
</html>" ];
显然这是一个荒谬的例子,但这样的事情可能吗?甚至可以添加字体等?
谢谢!
【问题讨论】:
标签: html ios objective-c mfmailcomposeviewcontroller