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
2010-09-28 16:08:05
thannnnnks works great :)
Momeks
2010-09-28 16:42:27
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
2010-09-28 17:25:32
The row parameter needs to be an integer, so you need to figure out which row myTextView is in, and pass that.
Daniel Dickison
2010-09-28 18:27:52