YasBES
YasBES

Reputation: 2325

Create TableView in the same View

I want to know esque I can do when I click Finish"-(IBAction)textFieldDoneEditing:(id) sender " on the keyboard, I view a tableView

Upvotes: 0

Views: 79

Answers (1)

visakh7
visakh7

Reputation: 26390

You can create a view controller which contains the table view and populate it when the user finishes editing and then show the view controller's view as subview if you want it on the same view controller or you can also push it in the navigation stack if you have one.

Upvotes: 1

Related Questions