I checked Paging Enabled
in ScrollView
on Storyboard
to scroll through the images one page at a time, but I would like to scroll through the images one page at a time, not one page at a time.In other words, I would like to page several times within one page.What should I do in this case?
I have found the best answer for my home, so I will write it down.
CGRect frame = scrollView.frame; frame.origin.x = frame.size.width * pageNumberYouWantToGo; // Number of pages frame.origin.y = 0; scrollView scrollRectToVisible:frame animated:YES;
Reference Change page on UIScrollView
618 Uncaught (inpromise) Error on Electron: An object could not be cloned
572 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
611 GDB gets version error when attempting to debug with the Presense SDK (IDE)
915 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
© 2024 OneMinuteCode. All rights reserved.