Reputation: 551
I have used a UIPopoverController on my toolbar item.. when the user clicked the button it shows a list of items in a table view.. please screenshot below..
Question is how do you focus on the table view on the popup and allow the user to scroll to cell..?
Thanks,
link
Upvotes: 0
Views: 166
Reputation: 21003
Ok, so now that I better understand your question. Your UITableViewDelegate
for the tableview in your popover should implement tableView:didSelectRowAtIndexPath:
. In this method you would do the following.
indexPath
[myOtherTableView reloadData]
directly, post a notification, execute a block, or have another layer of delegationUIPopoverController
Upvotes: 1