设置.捆绑,从首选项发送电子邮件。 (bug记者)
是否可以从我的应用程序首选项 (Settings.Bundle) 发送电子邮件以进行错误报告?
Is it possible to send an email from my app's preferences (Settings.Bundle) for bug reporting?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Settings.bundle 不具备像 iOS 应用程序那样执行代码的能力。您唯一能做的就是实现一些控件并将这些设置保存到 NSUserDefaults 中。
请参阅此处的文档。
实现设置包
Settings.bundle does not have the ability of executing code like in an iOS app. The only thing you can do is implement a few controls and save those settings to
NSUserDefaults
.See the docs here.
Implementing Settings Bundle