如何在应用程序中获取彩信/短信信息?
当服务器推送一条彩信/短信时,我想在我的应用程序中获取彩信/短信信息。但我找不到任何 API 来获取此信息;我只能使用 MFMessageComposeViewController 类发送彩信/短信。
如何获得这些信息?
I want to get the MMS/SMS message info in my app when the server pushes one MMS/SMS message. But I cannot find any API to get this info; I just can send MMS/SMS using the MFMessageComposeViewController
class.
How can obtain this information?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
没有公共 API 可供您阅读 MMS/SMS 消息。
There is no public API to enable you to read MMS/SMS messages.
通过将 URL 方案添加到您的应用程序,您可以将信息(编码在 SMS 内的 URL 中)从 SMS 间接获取到您的应用程序:用户需要打开 SMS 并点击链接。
By adding an URL scheme to your app, you can get information (encoded in an URL inside the SMS) from an SMS into your app indirectly: the user needs to open the SMS and tap the link.
对于任何官方 Apple API 来说,这都是不可能的
It's not possible yet with any official Apple API's