views:

36

answers:

1

Hi i have UITableView with x rows and my cell data loaded with plist file , i wanna implement a UITextField that user inserts the cell number and then after done button the cell going to highlight and show the cell row , for example enter 104 and then show me the row 104 . is there anyway ? thank you .

+1  A: 

-[UITableView selectRowAtIndexPath:animated:scrollPosition:]

Daniel Dickison
thannnnnks works great :)
Momeks
Daniel i have problem , i have UITextView and user insert number there : so i don't know why this code doesn't work : [NSIndexPath indexPathForRow:@"%i",myTextView inSection:0 ]
Momeks
The row parameter needs to be an integer, so you need to figure out which row myTextView is in, and pass that.
Daniel Dickison