ios - I had 1 table view and three labels in it -
here problem had table view consists of 3 three labels in (test1, test2, test3) comes webservice. want load 3 labels in single table view. here code below : for (nsdictionary *entry in entries) { projectnames = [entries valueforkey:@"nm_project"]; tasknames = [entries valueforkey:@"task_name"]; subtasknames = [entries valueforkey:@"subtask_name"]; } nslog(@"project : %@", projectnames); nslog(@"tasknames : %@", tasknames); nslog(@"subtask : %@", subtasknames); - (nsinteger)numberofsectionsintableview:(uitableview *)tableview { #warning potentially incomplete method implementation. // return number of sections. return 1; } -(nsinteger) tableview:(uitableview *)tableview numberofrowsinsection:(nsinteger)section { return [projectnames count]; } -(uitableviewcell*) tableview:(uitab...