Top "Uiscrollview" questions

Use this tag for all questions about scroll views on iOS.

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
Callbacks When an NSScrollView is Scrolled?

I'm making a Mac app which needs to know when the user is scrolling the NSScrollView, however, I can't find …

objective-c cocoa macos uiscrollview nsscrollview
Connection to daemon was invalidated

My app is using Firebase Analytics and I believe starting in iOS 13.2 started getting the errors described here: Why I …

firebase uiscrollview uikit webkit uimenucontroller
UIScrollView Zoom Does Not Work With Autolayout

Zooming with UIScrollView using a strictly autolayout environment does not seem to work. This is especially frustrating because the iOS 6 …

ios uiscrollview zoom autolayout
Horizontal scrolling UIScrollView with vertical pan gesture

I am attempting to implement a UIScrollView where horizontally panning scrolls through pictures in the scrollview but vertically panning performs …

objective-c ios uiscrollview uipangesturerecognizer
UIScrollView with pages enabled and device rotation/orientation changes (MADNESS)

I'm having a hard time getting this right. I've got a UIScrollView, with paging enabled. It is managed by a …

objective-c cocoa-touch ios uiscrollview uiinterfaceorientation
iOS UIWebView with changing content size

I have a UIWebView which i've set the height of the WebView to [[webView stringByEvaluatingJavaScriptFromString:@"document.body.offsetHeight"] floatValue]; This …

ios uiwebview uiscrollview contentsize
UIScrollView: what is the difference between contentOffset and bounds.origin?

I have implemented an UIScrollView delegate as: - (void) scrollViewDidScroll: (UIScrollView *) scrollView { CGRect bounds = scrollView.bounds ; CGPoint scrollLoc = scrollView.contentOffset ; …

ios uiscrollview autorotate
ios is it possible for a uiscrollview to detect a single tap by a user while still providing its dragging, scrolling capabilities?

I currently am using a UIScrollView to work as a way of scrolling/ dragging the cursor/ marker of a graph …

iphone ios uiscrollview touch tap
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