I have tableview with some names on each cell , how can i get that name when select row ?
i know that i have to use delegate method
-(void)tableView:(
you can access each row of your uitabelview using the following (uitableview-)function:
cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]
by the way, to access your tableview in other methods than uitableview's delegate method, you have to hook it up in IB (for example..)
hope it helps