user836026
user836026

Reputation: 11350

Beginner: How to present UITableView programmatically from another view

I have already created UITableViewController embedded in Navigator Controller using Storyboard and Interface Builder.

I would like to display this UITableViewController programmatically from a different UIViewController that I already have.

how to do that?

Upvotes: 0

Views: 535

Answers (1)

Sebastian Celis
Sebastian Celis

Reputation: 12195

You really should read the View Controller Programming Guide for iOS.

In particular, read about container view controllers (like UINavigationControllers and how to push new view controllers onto its stack) and presenting view controllers temporarily (which describes how to present a modal view controller).

Upvotes: 1

Related Questions