Search code examples
iosuiscrollviewcontentoffset

iOS: SetContentOffset for Scrollview doesn't work


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)];
}

Solution

  • I found the solution, the problem was, that i inited the components in layoutsubviews...