Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

scrollViewWillEndDragging:withVelocity:targetContentOffset: not working on the edges of a UISCrollView

I'm trying to implement a custom tab bar which is scrollable and has paging at each tab bar item. For that i'm using the delegate scrollViewWillEndDragging:withVelocity:targetContentOffset: which works perfectly with one problem.

The way my paging works is, if the contentOffset is near the right item, it the targetContentOffset changes to the offset of that item. Same thing for the left side.

The problem is, whenever I'm at at the left half of the first item and the right of the last (the scroll view works horizontally) it's supposed to go to ContentOffset 0 and the content offset of the rightmost item (minus the ones on screen), but it doesn't.

I checked with the debugger and the targetContentOffset->x is indeed 0 (in the first case - left of the leftmost item). So the problem is the UIScrollView not scrolling there. I'm lost.

Here is my implemented delegate:

- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView                  withVelocity:(CGPoint)velocity           targetContentOffset:(inout CGPoint *)targetContentOffset{      NSInteger index = lrintf(targetContentOffset->x/self.tabWidth);      targetContentOffset->x = index * self.tabWidth; } 

Here is the diagram explaining what i want to do.

|-------|-------|-------|-------|-------|-------|-------| |       |       |       |       |       |       |       | |       |       |       |       |       |       |       | |_______|_______|_______|_______|_______|_______|_______|          |_______________________________________|          where it is and i scroll it to the left     <----|     |_______________________________________|               where it would stop  |_______________________________________|         where i want it to stop 
like image 952
dvieira Avatar asked Jun 04 '12 11:06

dvieira


1 Answers

This is a known issue it seems. After some investigation and talking to other people it was suggested it could be a bug, which turned out to be correct. I reported it to Apple and was it marked as duplicate but is still open. Just answering for those of you with the same problem. I workaround it like Big Papoo suggests, by using an offset close to what I want (0.1 seems to do it). The same for the right end.

like image 64
dvieira Avatar answered Sep 21 '22 00:09

dvieira