I use an array (self.tableData) with objectAtIndex:indexPath.row
for retrieving NSString.
Here is my code :
Person *person = [self.tableData objectAtIndex:indexPath.row];
cell.textLabel.text = person.fullName;
I would like to use person.fullName; in ViewDidLoad
but I don't know how to make this. Sorry if it's a stupid question...