Top "Uiscrollviewdelegate" questions

The methods declared by the UIScrollViewDelegate protocol allow the adopting delegate to respond to messages from the UIScrollView class and thus respond to, and in some affect, operations such as scrolling, zooming, deceleration of scrolled content, and scrolling animations.

Overriding delegate property of UIScrollView in Swift (like UICollectionView does)

UIScrollView has a delegate property which conforms to UIScrollViewDelegate protocol UIScrollViewDelegate : NSObjectProtocol { //... } class UIScrollView : UIView, NSCoding { unowned(unsafe) var delegate: …

ios swift uiscrollview uiscrollviewdelegate
Detecting the bottom "bounce" of UITableView

I have a table view that performs an animation when the user scrolls down on a UITableView (push thumb up) …

ios uitableview uiscrollviewdelegate
UIScroll View Delegate not calling ScrollViewDidEndScrollingAnimation

I have implemented the UIScrollViewDelegate protocol in my .h file and i have implemented the - (void)scrollViewDidEndScrollingAnimation:(UIScrollView *)scrollView …

iphone uiscrollviewdelegate
UIScrollView did Scroll

I want to show an image that stays on the page for 5 seconds but appears everytime my scrollview scrolls. So …

iphone objective-c ios uiscrollview uiscrollviewdelegate
How can I test if the scroll view is bouncing?

How can I test if the scroll view is bouncing? Is there a notification or something when the bounce ends?

iphone uiscrollview uiscrollviewdelegate
iOS. How do I restrict UIScrollview scrolling to a limited extent?

What is the best way to set limits on the left/right scrolling of a UIScrollView. I would have thought …

ios5 uiscrollview uiscrollviewdelegate
My ScrollView is not scrolling vertically

I'm writing an app in Xcode 9 with Swift 4 and I've added a UIScrollview to a view which is intended to …

swift xcode uiscrollviewdelegate
How to set background color to the content area in UIScrollView?

I am using an UIScrollView in my application, my requirement is I have to add background color to the UIScrollView …

iphone ios ipad uiscrollview uiscrollviewdelegate
Want UITableView to "snap to cell"

I am displaying fairly large images in a UITableView. As the user scrolls, I'd like to the table view to …

ios objective-c uitableview uiscrollviewdelegate
UITableView not executing to scrollViewDidScroll or scrollViewShouldScrollToTop

I have a private table view in my UIViewController as follows UIViewController<UIScrollViewDelegate, UITableViewDelegate> { @private UITableView *gTableView; ... } in …

iphone uitableview uiscrollviewdelegate