I defined an array for tableView's listData.
NSArray *array = [[NSArray alloc] initWithObjects:@"Sleep", @"Bashful", @"Happy", nil];
self.listData = array;
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:SimpleTableIdentifier];
cell.text = [listData objectAtIndex:row];
Now I want to add more data to the tableview. How to connect another data to it so when I click a button the array will be @"A", "B", "C", "D", nil?