ABPersonViewController 上的自定义操作
我的应用程序会弹出一个 ABPersonViewController 并为用户提供编辑或选择联系人的选项。我可以轻松允许编辑(pvc.allowsEditing = YES
),但我不知道如何添加“选择”按钮。我更愿意将其添加到 ABPersonViewController 作为自定义按钮,如短信等默认按钮。
My app brings up a ABPersonViewController and gives the user the option to edit, or to select the contact. I can easily allow editing (pvc.allowsEditing = YES
) but I can't figure out how to add the Select button. I would prefer to add it to the ABPersonViewController as a custom button like the Text Message, etc. default buttons.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,你不能。对 ABPersonContact 默认外观的任何修改都将被 Apple 拒绝。另一种方法是自定义您自己的 ViewController 并从联系人加载数据。
No, you can't. Any modifications on the default appearance of ABPersonContact will be rejected by Apple. An alternative way is to custom your own ViewController and load data from Contact.
我最终对
ABPersonViewController
进行了子类化,并在它出现后在UIToolbar
中滑动。示例如下:I ended up subclassing
ABPersonViewController
and sliding in aUIToolbar
after it appears. An example is below: