获取 TTMessageRecipientField 的内容 (TTMessageController)
我在我的项目中使用 TTMessageController 。
用户可以自动搜索 或者从他的地址簿中选择一个联系人,以便我可以检索 来自 TTMessageRecipientField 的收件人作为 NSArray。
然而当 用户提供的联系人不在他的通讯录 NSArray 中 “收件人”为空(例如,当他只是输入联系人而不是从地址簿中选择它时)。
有没有办法从 TTMessageController 获取常量字符串?
I use the TTMessageController in my project.
The user can auto search
or pick a contact from his address book so that I can retrieve the
recipients from TTMessageRecipientField as NSArray.
However when the
user provides a contact that is not in his address book the NSArray
"recipients" is empty (e.g. when he just types in a contact instead of picking it from address book).
Is there a way to get just the contant string from TTMessageController?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仔细查看 TTMessageController 类后,我找到了解决方案。
在 TTMessageController 子类中,使用以下方法
返回收件人文本字段的字符串值。
After having a closer look at the TTMessageController class I found a solution.
In your TTMessageController subclass use following method
returns the string value of the recipient text field.