Hi all.
I have two tableviews (high local & global score) on a scrollview.
When call the table on it's own would work like a charm.. :
but now it's on the scrollview, nothing happens. When I sort or try to ScrollToRow. nothing!
but it will update when I add/delete an entry.
Do I have to call scrollToRow from the within the scrollView?
thanks
Ian
ps. I would be cool to trigger a scrollToRow when I switch screens
I guess??? Something in :
I have two tableviews (high local & global score) on a scrollview.
When call the table on it's own would work like a charm.. :
Code:
[myTable scrollToRowAtIndexPath:indexPath
atScrollPosition:UITableViewScrollPositionTop animated:YES];
but now it's on the scrollview, nothing happens. When I sort or try to ScrollToRow. nothing!
but it will update when I add/delete an entry.
Do I have to call scrollToRow from the within the scrollView?
thanks
Ian
ps. I would be cool to trigger a scrollToRow when I switch screens
I guess??? Something in :
Code:
-(void)scrollViewDidScroll:(UIScrollView *)sender
{
// do the tableview ScrollToRow thang //
}