Do you know, how to control the ScrollView, so they do not repeat. For example I have 5 pictures (like the added figure), they should be viewable from 1-5 and it should stop right after the last picture, at the same time it should be able to scroll back and stop right after the first picture. All in all it should only be able to go from 1-5 without repeating after 5th picture and before 1st.
The problem right now is, that it scroll further after 5th, so it begins from 1st picture again, and the other way around when it scroll back to 1st picture it keep going to 5th and so on.
The code that I used for this is:
“InfinitePagingView” page!.
Disabled scroll:
scrollEnabled = NO;

What I want to know is, if I am able to stop scrolling right after 5th picture, but it should only be enable to do that on the right side. So is there any codes like: “scrollEnable right = NO & scrollEnable left = NO”. If not, which code can I use.
Advance thanks
so you want infinite scrolling on the right side, but not on the left? You need to customize the
InfinitePagingView, that you are using. Look in the code, especially the methodscrollView:didScrolland disable it for the left side.That is not a default behaviour, so there is not a simple property to set. But don’t you think this is a strange behaviour? If you scroll right and go over the 5th picture, than you are at the 1st one again and you cannot scroll to the left anymore? Although you just came from that place?
If you don’t want any infinite scrolling just use a default scrollView!