I have 3 Scrollviews and they should scroll synchron with the other...
But this code doesn't work:
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
[rowIdCellScrollView setContentOffset:CGPointMake(0, contentScrollView.contentOffset.y)];
[headerScrollView setContentOffset:CGPointMake(contentScrollView.contentOffset.x, 0)];
}
I found the solution, the problem was, that i inited the components in layoutsubviews...