Reputation: 1541
I have a UITableview
within a PopOver, with a UINavigationController
.
1) How to navigate to another UITableview
, within the popover, when tapped on one of the cells of the first UITableview
?
2) Also, is it possible that the new UITableview
that loads has a bigger size than the previous table within the popover? That is, the new bigger UITableview
resizes the popover accordingly?
Upvotes: 0
Views: 365
Reputation: 372
UINavigationController method pushViewController:animated:
UIPopoverController method setPopoverContentSize:animated:
Upvotes: 1