从 uitableview 填充电子邮件正文的最佳方式
好吧,让我试着提出一个更好的问题。
我的应用程序中有一个 tableViewController ,其中包含用户希望通过电子邮件向某人发送来自 tableview 的数据的一些信息。
我可以保留一个包含该信息的数组。
问题的困难部分是如何使用 Objective-C 语言使用表视图中的数据填充消息正文?
我是否必须制作一个包含所有 html 代码的巨大字符串?或者有更好/更简单的方法吗?即使它只是一个看起来很简单的表格,以便客户将其发送给某人。
我想任何解决方案/建议都可能是我知道应该如何处理这个问题的一个很好的途径。
Ok let me try to make it a better question.
I have a tableViewController in my app containing some info that the user would like to email someone with that data from the tableview.
I could retain an array with that information.
The tough part of the question is how do i populate the body of the message with the data from my tableview using objective-c language ?
Do I have to make a huge string containing all the html code ? Or is there a better/easier way around it ? Even if it is a simple looking table just so the client will send that out to someone.
I guess any solution/advice could be a great waypoint for me to know how should i work with this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我真是搞定了!
如果你们想写一封包含 UITableViewController 中数据的电子邮件
这就是我的制作方法。只需记住导入您的数据头文件...
这对我来说是一大步,如果您想在应用程序中创建有趣的(基本)工具,它实际上非常有用。
感谢这个面向 Objective-C 程序员的经典网站中的每个人。
这就是你得到的结果。简单但却是一个很好的开始方式。
I freaking nailed it !
If you guys ever want to compose an email having the data from your UITableViewController
here's how i made it. Just remember to import your data header file...
This one was a huge step for me and it is actually very useful if you want to create interesting (basic) tools in your app.
Thanks to everyone in this quintessential website for objective-c programmers.
Andthis is the result you get. Simple but a good way to start.