I have a button. When click on button then open a table view with 100 row. I user select a ny row then appear check mark. And when user click on again then i want to show that selected row when view open. How do that? For example when user click on button then open table view and suppose select 50 th row. Now user click on button again then i want to show 50th row directly instead user go to scrolling table view. So tell me how do that? Thanks in advance..

link|improve this question

65% accept rate
feedback

2 Answers

up vote 4 down vote accepted

Just call

- (void)selectRowAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated scrollPosition:(UITableViewScrollPosition)scrollPosition

to your table view.

For example, following code will select 50th row in first section:

UITableView *tableView;
[tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:50 inSection:0] animated:YES scrollPosition:UITableViewScrollPositionTop];
link|improve this answer
i use but i not working. I have uiview in which i have a table view. How i use it? – iRam11 Sep 5 '11 at 4:52
Have you gat reference to your tableView? – Nekto Sep 5 '11 at 6:25
Yes i get reference of table view. – iRam11 Sep 5 '11 at 6:52
then just call [yourReferenceToTableView selectRowAtIndexPath:...] – Nekto Sep 5 '11 at 6:58
feedback

Use,

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:selectedRow
                                            inSection:sectionOfSelectedRow];
[tableView scrollToRowAtIndexPath:indexPath animated:YES];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.