Breakpoint
Breakpoint

Reputation: 1541

Navigate between UITableview within a PopOver

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

Answers (1)

longbow
longbow

Reputation: 372

  1. Use the UINavigationController method pushViewController:animated:
  2. Use the UIPopoverController method setPopoverContentSize:animated:

Upvotes: 1

Related Questions