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.

learn more… | top users | synonyms

23
votes
4answers
2k views

In iOS 4.0, why does UIScrollView zoomToRect:animated: not trigger the scrollViewDidScroll or scrollViewDidZoom delegates while animating?

I need to closely monitor the scale of the scroll view so that I can update the content view's elements (a subview managing multiple CALayers) according to the scroll view's animated zoom. On iOS ...
13
votes
4answers
3k views

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 method in my .m class. when the ...
12
votes
3answers
9k views

Detecting UIScrollView page change

Is there a way to detect or get a notification when user changes the page in a paging-enabled UIScrollView? pom
12
votes
5answers
1k views

Why does UIScrollView scroll violently when I quickly swipe twice in the same direction?

when scrolling horizontally in a UIScrollview, if I quickly swipe twice in the same direction the scroll view jumps violently. Is there anyway to prevent this from happening? To explain in detail, ...
11
votes
5answers
3k views

scrollViewWillEndDragging:withVelocity:targetContentOffset: not working on the edges of a UISCrollView

I'm trying to implement a custom tab bar which is scrollable and has paging at each tab bar item. For that i'm using the delegate scrollViewWillEndDragging:withVelocity:targetContentOffset: which ...
10
votes
3answers
7k views

Become UIScrollViewDelegate delegate for UITableView

I have a UITableView instance variable. I want to be able to register my view controller to be the UIScrollViewDelegate for my UITableViewController. I have already tried tableView.delegate = ...
8
votes
2answers
2k views

Objective C switch statements and named integer constants

I have a controller which serves as a delegate to two scrollviews which are placed in view managed by aforementioned view controller. To distinguish between two scroll views I'm trying to use switch ...
6
votes
1answer
3k views

Custom UIScrollView paging with scrollViewWillEndDragging

I'm trying to use the new scrollViewWillEndDragging:withVelocity:targetContentOffset: UIScrollView delegate call in iOS 5 but i can't seem to get it to actually respond to me correctly. I'm changing ...
6
votes
2answers
456 views

Why can't I store a UIWebView's UIScrollView delegate property anymore?

Before ios5 I was able to access a UIWebView's UIScrollView delegate like this: for (id subview in webView1.subviews){ if ([[subview class] isSubclassOfClass: [UIScrollView class]]) { ...
5
votes
2answers
2k views

iPhone - knowing if a UIScrollView reached the top or bottom

Is there a way to know if a UIScrollView has reached the top or bottom inside - (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate ? thanks.
5
votes
2answers
583 views

iOS6 ScrollBarShouldScrollToTop not firing/ ScrollView Delegate issue

I am adding a dummy ScrollView to my app to detect a user click on the status bar, to performa an event in my program.. I am creating it in the ViewDidLoad: //Dummy Scroll is for the tap on status ...
5
votes
3answers
990 views

How to create a paging UIScrollView with “oversized” pages

Is there a suggested way to create a paging UIScrollView that has pages wider than the bounds of the UISrollView? I would need something like this. normal scrolling within page2 and paging mode ...
4
votes
2answers
3k views

Setting contentOffset programmatically triggers scrollViewDidScroll

I've got a a few UIScrollView on a page. You can scroll them independently or lock them together and scroll them as one. The problem occurs when they are locked. I use UIScrollViewDelegate and ...
4
votes
2answers
3k views

UIScrollView, reaching the bottom of the scroll view

I know the Apple documentation has the following delegate method: - (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView; // called when scroll view grinds to a halt However, it ...
4
votes
3answers
41 views

check if scrollview.contentset went over certain x value

I have a scrollview and above some image. When the scrollview scrollView.contentOffset.x is past a certain X my image above should animate. I know how to animate. At the moment I'm doing this in the ...
4
votes
1answer
330 views

UIScrollView ContentOffset not Reaching Edge of Screen

I'm having a problem with UIScrollView, not sure if it's a bug or not, but it's occurring when I implement a UIScrollView with its delegate and a zoomable / pannable image. First off, when I pan the ...
4
votes
0answers
151 views

How to use viewForZoomingInScrollView with simplified fake view in UIScrollView?

I've looked all around the internets but could not find an example where viewForZoomingInScrollView returns a simplified fake view for zooming. The reason I'm asking is that the zoom stutters when ...
3
votes
3answers
2k views

UIScrollView bounce test

How can I test if the scroll view is bouncing? Is there a notification or something when the bounce ends? Thanks in advance!
3
votes
2answers
3k views

UIScrollView notifications

I'm coding an app that works much like Apple's Weather.app: There's a UIPageControl at the bottom and a UIScrollView in the middle of the screen. In my code, I implemented the - ...
3
votes
1answer
257 views

Why setting pagingEnabled to YES in UIScrollView automatically scrolls to previous page when the sub views are touched?

I am using UIScrollView to show lots of subviews. Below is the code for creating scroll view: ScrollView = [[UIScrollView alloc]initWithFrame:CGRectZero]; ScrollView.delegate = self; ...
3
votes
1answer
3k views

How can I get a UIWebView's UIScrollView delegate methods called from within a standard UIViewController?

So I just have a standard UIViewController with a UIWebView in it that displays a pdf. For the app functionality, I have need to be able to respond to the UIWebView's nested UIScrollView events like ...
3
votes
2answers
857 views

Detecting when a UIScrollView it at a certain point and perform an action

I'm trying to figure out how to do this. Been stuck on this for a really ling time. I'm trying to detect when a UIScrollView is in a perfect location and perform an action. Here I have a UIScrollView ...
3
votes
1answer
621 views

What's the velocity unit in scrollViewWillEndDragging:withVelocity:targetContentOffset:?

The documentation states it's points (per second, I'm assuming)? However, the values I get for it are in the (.5, 3.5) range. The scroll view then travels several hundred points before coming to a ...
3
votes
1answer
235 views

Protocol declaration with delgate & Datasource for UIPageController with ScrollView having several views in same page

Thanks to Jones & Apple for such Excellent & easy tutorials than any others !!! But sorry for such long description otherwise it would be very difficult to explain it what I am looking for. ...
3
votes
1answer
813 views

How much contentOffset changes in UIScrollview for zooming?

In UIScrollview, when I scroll/drag, I got changes in scrollview contentOffset which represent how much I had scrolled/dragged in the scrollview. By this way, I have updated the subview of scrollview ...
2
votes
1answer
407 views

UIScrollView not respecting minimumZoomScale after changing the subview

I'm hitting a problem getting a UIScrollView to update correctly in response to a change in the minimum zoom scale. The scrollview has a UIImageView as a subview, and the image property of the ...
2
votes
3answers
1k views

UITableView pull to refresh causing flickering. How to prevent it?

I'm doing that pull-down-to-refresh thing. In scrollViewDidEndDecelerating I check if the offset is past a certain point and in scrollViewDidEndDragging I set the contentInset so as to keep the ...
2
votes
1answer
481 views

Check if Protocol Method is Defined

UIScrollViewDelegate has a new awesome method: // called on finger up if the user dragged. velocity is in points/second. targetContentOffset may be changed to adjust where the scroll view comes to ...
2
votes
1answer
311 views

How to trigger action when scrolling in UIScrollView?

I am writing a small app about display images from a news website. Let say there are plenty of images. But each time it loaded, I just want to load 3 images and then display them on the screen. Only ...
2
votes
3answers
3k views

How to use UIScrollView to switch between UIViews

How would I build multiple UIViews with multiple subviews and switch between them using a UIScrollView? I would appreciate anyone who can upload some code. I am a complete noob withe the iPhone.
2
votes
2answers
379 views

Detect sudden scroll stop in UIScrollView

I would like to know how to use the UIScrollViewDelegate to detect when the scroll view stops moving suddenly because the user has touched and held the screen after momentum has been initiated from a ...
2
votes
1answer
3k views

UIScrollView frame size issue in Landscape Mode

I'm trying to make UIScrollView auto-resize and appear correctly in Landscape mode. Portrait mode works fine. Here's my code: - (void)viewDidLoad { [super viewDidLoad]; //=== load all the custom ...
2
votes
1answer
90 views

Units / Dimensions for UIScrollView decelerationRate and velocity?

I am trying to get the velocity of a scrolling UIScrollView after the user has lifted his/her finger so that I can trigger an event when the scrollview's velocity drops below a threshold velocity. ...
2
votes
1answer
74 views

Two scrollView should move together in single touch in any one scrollView

I am working on UIScrollView and I'm new in programming. How to scroll two UIScrollView simultaneous in one touch in any one scrollView if I scroll 1st scrollView then 2nd scrollView should also move ...
2
votes
2answers
835 views

How to “stick” a UIScrollView subview to top/bottom when scrolling?

You see this in iPhone apps like Gilt. The user scrolls a view, and a subview apparently "sticks" to one edges as the rest of the scrollView slides underneath. That is, there is a text box (or ...
2
votes
1answer
1k views

Setting ContentOffset of a UIScrollView while Scrolling

This is the first question I have asked here so bear with me . I've done quite a bit of looking into this but have been unsuccessful in finding a solution that worked so I figured I'd toss it out ...
2
votes
2answers
751 views

Why Does `-[UILabel setText:]` Leak?

In a UIScrollViewDelegate class on iOS 4.2.1 in my iPad app, the -scrollViewDidEndDecelerating: method calls another method that does, this: EntryModel *entry = [entries objectAtIndex:index]; ...
2
votes
1answer
1k views

UIScrollView doesn't remember the position

Has anyone ever had the problem that a UIScrollView, which gets moved by [UIScrollView setContentOffset:...] doesn't "remember" it's new position? It however does, if the user scrolls via ...
2
votes
2answers
464 views

UIPageControl not visible when combined with UIScrollView

I'd like to make use of a page control to switch between several viewControllers. I have the following viewController whose associated nib contains a UIScrollView and a UIPageControl. I've placed the ...
2
votes
0answers
290 views

UIScrollView scrollViewDidEndDragging not being called when scrolling quickly

I've implemented scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate in my UIScrollViewDelegate. The method gets called no problem except for when I scroll very ...
2
votes
0answers
194 views

How to update ui in background without losing ui responsiveness? [duplicate]

Possible Duplicate: How to make ui responsive all the time and do background updating? Hi All, I am creating a application which displays 8 thumbnails per page and it can have n pages. ...
2
votes
0answers
2k views

WWDC 2010 Session 104 Sample Code [duplicate]

Possible Duplicate: WWDC 2010 Sample Code Where I can found the FrogsDemo sample code from WWDC 2010 Session 104?
1
vote
1answer
299 views

UIScrollViewDelegate not working

Hello I'm trying to trigger a function when the user is scrolling the app. Here is my code I defined a class MyViewController which implements the UIScrollViewDelegate @interface ...
1
vote
1answer
89 views

UIScrollViews all scroll in the same time

I have a screen with several scrollViews. How to achieve this: When i tap on one and swipe they all start to scroll. I of course know UIScrollViewDelegate methods and what i trying to do so far is ...
1
vote
3answers
1k views

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 this would be easy but all my attempts have been unsuccessful. So, to be clear, I need a ...
1
vote
4answers
2k views

UIView not firing methods in the UIScrollView delegate

I wonder if someone could please shed some light as to why any of the methods in UIScrollView delegate are not being fired. To set the scene. I have a UIViewController which is pushed onto a stack. ...
1
vote
1answer
146 views

Using UIScrollview within a UITabController to display UIImageView not displaying all pages

I'm following the "Paging with UIScrollView" section of How To Use UIScrollView to Scroll and Zoom Content with 4 images loaded into the array. I should mention that I'm loading this in a ...
1
vote
2answers
3k views

iPhone: How to Tell Which Scrollview Calls the Delegate Methods?

The answer to this is probably right under my nose, but I am not seeing it. Maybe someone here could help. I have a scrollView that allows for vertical scrolling. I set it up: [clefScrollView ...
1
vote
3answers
96 views

Create a button on top of UiTableView

I am trying to understand how does Facebook Messenger create a button at the button of the screen which stays on top of the UITableView and follows the scrolling as well? I want to implement the ...
1
vote
1answer
98 views

How to use a UIScrollview to create a thumb wheel with the dynamic speed?

UIThumbWheel I'm developing a wheel, like an old fashioned volume control, that sticks out of the side of a UIView and returns values. The issue I'm having is how to marry UIScrollView to the task ...

1 2 3 4