ABPeoplePickerView - 如何让它滚动到选定的记录?

发布于 2024-08-11 19:46:58 字数 377 浏览 5 评论 0原文

我在 Mac OS X 应用程序中使用 ABPeoplePicker。我连接了一个按钮,将所选记录更改为默认的“我”记录。

这工作正常,并且记录被选中,但是,我需要滚动表格才能查看所选记录。

NSTableView 具有 -scrollRowToVisible:(NSInteger)rowIndex 方法,但我找不到与 ABPeoplePickerView 类似的任何内容

有一条通知 ABPeoplePickerNameSelectionDidChangeNotification 当所选记录更改时发布,但我找不到将记录的属性插入视图的方法,以便使其可见。

I'm using the ABPeoplePicker in a Mac OS X application. I've hooked up a button that changes the selected record to the default 'Me' record.

This works fine, and the record gets selected, but, I need to scroll the table to see the selected record.

NSTableView has the -scrollRowToVisible:(NSInteger)rowIndex method, but I can't find anything similar for the ABPeoplePickerView

There is a notification ABPeoplePickerNameSelectionDidChangeNotification that is posted when the selected record changes, but I can't find a way of plugging in a property of the record into the view so I can make it visible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

窗影残 2024-08-18 19:46:58

使用 selectRecord:byExtendingSelection: 时,它会自动滚动到您的选择,例如:

[peopePickerView selectRecord:[[ABAddressBook sharedAddressBook] me] byExtendingSelection:NO];

确保为 byExtendingSelection 参数传递 NO。

PS:上一张海报是在 iPhone 上的;)

It will automatically scroll to your selection when using selectRecord:byExtendingSelection: for example:

[peopePickerView selectRecord:[[ABAddressBook sharedAddressBook] me] byExtendingSelection:NO];

Be sure you're passing NO for the byExtendingSelection argument.

PS: Previous poster is in iPhone land ;)

梦中的蝴蝶 2024-08-18 19:46:58

那么scrollPersonToView 方法怎么样?

How about the scrollPersonToView method?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文