I am trying to create a list where I want users to enter data in the text view provided above and on they clicking add button it populates in a tableview below. !This is a sample type that I want to create.
sample image
I am trying to create a list where I want users to enter data
Share
Easy, the IBAction for the Add button should just add the text entered into the text field into an array that powers the UITableView. After adding it to an array, call
reloadDataon the UITableView, the UITableView will read the new data, as well as the other data from the NSArray and provide data to the list.