Closed SrikanthKabadi closed 11 years ago
Found a solution for this issue. Just change
CGFloat pageX = ceilf(point.x / pageSize.width);
CGFloat pageY = ceilf(point.y / pageSize.height);
to
CGFloat pageX = floorf(point.x / pageSize.width);
CGFloat pageY = floorf(point.y / pageSize.height);
in function
Hi there,
Thank you so much for this great source but I found an issue where in, there is a problem with "scrollToObjectAtIndex" function when paging is enabled. It doesn't scroll to given cell index. I checked for this issue even with the demo application and the problem exists in example app as well. Please provide a fix for this issue.
Thank you, Srikanth