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

0
votes
0answers
9 views

Scrollable region of UIScrollview bigger than scrollview itself

I want the following. I have a navigation bar at the bottom of my app. Above I have a scrollview where the user can scroll to. Look at the image below. Inside my scrollview I've added an image. ...
0
votes
1answer
22 views

Scrolling the scrollview from a specific point

I have a button in my application which is supposed to scroll the scrollview from bottom to top (like "dragging" the scrollview from the bottom of the screen. The problem is that everything is inside ...
0
votes
0answers
3 views

Having trouble with UIScrollView horizontal 'snap' not working

My Horizontal scrollview isn't snapping, meaning stopping at each view. Any Help would be appreciated. (FYI the Views are views within a scrollview in a xib, set X is set to 0,320,640,960,1280 for ...
0
votes
1answer
17 views

Shinobi chart not accessible when inside a scrollview

My application shows an horizontally scrollable area which should contain two different chart implemented using the Shinobi libraries. As my paged Scrollview is made using ATPagingView, I included the ...
0
votes
1answer
62 views

circular scrollview with automatic animation and manual too [closed]

I need to develop one circular scrollview with automatic animated, and if user scrolling that left and right then it will work perfectly like Advertisement in some web side , or headline of news that ...
1
vote
2answers
54 views

UIScrollView with scrolling buttons issue

I want to create UIScrollView with scrolling buttons.So when user press left arrow button, scroll must scroll properly. The issue is: when I click button 3 times quickly scroll can't scroll properly ...
-1
votes
1answer
34 views

IOS Issues Telling When Scroll View has Finished

I found a post on here that briefly described how to tell if a UIScrollView has finished scrolling How to know exactly when a UIScrollView's scrolling has stopped?. It uses the ...
0
votes
0answers
20 views

Zooming in UIScrollView resets the offset to 0

I am trying to implement an Album like feature and would like to have pinch to zoom or tap to zoom in a UIScrollView which has several subviews. Now, the problem is that when I try to zoom, it always ...
0
votes
2answers
30 views

Issue with a scrolling fading UIView and its subviews. How should I be doing it?

I have a UIView with many subviews on a UIScrollView. As the UIScrollView slides to the left off the screen the alpha value of the UIView is reduced. It eventually is almost 0.0. The issue is that ...
0
votes
0answers
47 views

UIView inside UIScrollView receive touch and allow zoom with scrollview

I have UIView inside UIScrollView. In UIView, I implement touchesBegan, touchesMoved, touchesEnded to draw using CoreGraphics. In UIScrollView, I set delaysContentTouches = NO, to let subview of ...
4
votes
3answers
50 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 ...
0
votes
0answers
48 views

UIScrollView decelerates too early

I'm using scrollViewWillEndDragging:withVelocity:targetContentOffset: to snap my scrollview to pages. I customized the behavior based on the velocity. It works fine except that the scrollview ...
0
votes
0answers
58 views

How to create UIScrollView with different page sizes (page snapping, bounce)

I'm trying to create custom vertical UIScrollView which could handle multiple pages with different page heights. Assumptions: page height is equal or greater than screen height if page is taller ...
0
votes
1answer
58 views

Decelerating delegate method of the scrollView is not called for vertical scrolling?

The scrollView delegate method scrollViewDidEndDecelerating:scrollView is not get called for vertical scrolling(It is working well for horizontal scrolling) I don't know how to make it inform the View ...
3
votes
1answer
165 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. ...
0
votes
0answers
40 views

UIScrollView has delegates that work and delegates that don't work

My UIScrollView didScroll delegate is working but my didZoom delegate isn't being called. Why is that?
0
votes
1answer
198 views

Detect direction of scrolling UICollectionView, load data from REST

Assuming standard configuration (up/down), I'd like to detect when a user is scrolling their UIColletionView up or down (which is subclass of UIScrollView and conforms to UIScrollViewDelegate). I ...
1
vote
3answers
135 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 ...
0
votes
1answer
162 views

Delegate methods of UIScrollView inside a UIWebView not called for horizontal scrolling

I have a UIWebView which has both horizontal and vertical content off the visible screen. I set my controller to be the delegate of the UIWebView's UIScrollView, and noticed that when I scroll ...
1
vote
1answer
112 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 ...
0
votes
0answers
20 views

Strange behavior of scrollView, It would great if someone can describe behavior?

Here is example project that I was working. https://www.dropbox.com/s/nxf7dxfugl30vse/scrollViewTest_2Views.zip Let me explain scenario. Its having 2 views, both view is having the scrollView as ...
0
votes
0answers
28 views

Designing ScrollView bigger than screen size

I have did my research on google and StackOverflow too . Following is the one question steps for creating UIScrollView with Interface Builder and other question like it. None of them explains ...
0
votes
2answers
45 views

How to unblock pan and pinch events in a UIScrollViewDelegate?

I have a UIView which has a UIScrollView subview and is a UIScrollViewDelegate. Since I've implemented viewForZoomingInScrollView I stopped getting pan and pinch events for the UIView. How can I get ...
0
votes
0answers
68 views

Hiding Toolbar temporarily while scrolling

I have a UITableView with a UINavigationController+UIToolbar I want to hide the tool bar while the user is scrolling the table. I hide the tool bar using this: - ...
0
votes
0answers
47 views

ScrollView within subview within a view

I Have a UIView and when I press a button I want to add a Subview (I just want to add s maller UIView that has a UIScrollview inside it with paging control with a black faded backgound) and I found ...
1
vote
1answer
110 views

UIScrollview sync a subview origin while zooming

i'm trying to develop a kind of custom map. So I have a scrollview with zooming enabled. This scrollview has an UIImageView as its subview that represent the map for the user. I'd like the user to ...
0
votes
1answer
119 views

Adding UIPangesture for UIButton within UIScrollview to move over the all view

In my project i am having scroll at bottom and table at top. Inside scrollview i am adding 10 buttons.for each button i had pan gesture to move around the screen.when the button intersect with table ...
1
vote
3answers
143 views

UIScrollview Zoom implementation without InterfaceBuilder

I can't make zoom in UIScrollView work. So the problem is that panning is working perfectly. However, pinching and zooming doesn't work. The reason i assume is that i don't have delegates. My ...
2
votes
1answer
76 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 ...
0
votes
1answer
161 views

UIScrollView horizontal scroll not working

I have the following setup: On top of a UIViewController I've set a UIScrollView with size 320 x 56. Inside the UIScrollView I have a UIView with size 640 x 56. The UIScrollView has the autoresize ...
1
vote
2answers
150 views

UIScrollView scrollViewDidEndDecelerating not triggering

I have a UIScrollView, created programmatically, inside of a UIView. What do I need to do to ensure that I can use the delegate method scrollViewDidEndDecelerating? Here's what I have set up, please ...
0
votes
0answers
66 views

UIScrollView to ignore scrolls in child objects

I am creating an app with vertical scrollView, named scrollView1, inside that I have a place where users can trace out their signature on a autoGraph, named autograph1. the signature view (the child ...
0
votes
1answer
59 views

Incorrect behavior of the scroll's indicator

I have UIScrollView. I set contentOffset using the code : [UIView animateWithDuration:0.2 delay:0 options:UIViewAnimationOptionAllowUserInteraction | UIViewAnimationOptionCurveEaseOut ...
0
votes
1answer
441 views

iOS iPad App: Delegates not called for ViewController with two UIScrollViews and a UIPageControl (delegate functions for paging NOT CALLED)

For my iPad App, I have a main ViewController which contains two UIScrollviews and a UIPageControl. The Problem is that the delegates for the paging are not getting called. Here is the layout: ...
0
votes
1answer
97 views

How to zoom a single image in a photo scroller (UIScrollView)

I have a UIScrollView which has about 10+ images laid out horizontally using the following code adapted from apple sample code: - (void)layoutScrollViewImages { UIImageView *view = nil; ...
1
vote
1answer
158 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 ...
0
votes
1answer
104 views

UIScrollView loses reference to delegate

I need to create a number of UIScrollViews dynamically and fill them with content. This is all good except when i set the delegate to self and pan the list i get this exception: Terminating app due ...
0
votes
1answer
752 views

Horizontal Parallax Scrolling UIScrollView iOS

I'm trying to implement horizontal parallax on a paging scroll view which makes it so that one view appears to advance faster in the x direction but "lands" in the same spot (for example, say (0,0)). ...
1
vote
2answers
381 views

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 but when user drags at the extreme top or at the extreme bottom the area other than ...
1
vote
1answer
112 views

landscape uiscrollview vertical iphone

My interface and oriented in landscape mode. In my view, I have a form for recording with many UITextField. The component UIScrollView comes moves only horizontally and not vertically. I would like ...
0
votes
0answers
58 views

How to move a view while scrolling a UITableView?

I have a searchBox and a table view which shows results. What I want is, when I scroll up in the table view, searchBox goes up with the same speed and distance. Here is my code: - ...
0
votes
1answer
127 views

EXC_BAD_ACCESS when dragging UIScrollView

In a controller I'm creating a UIScrollView. I'm trying to set this viewcontroller as the UISCrollview delegate and to implement the delegate's method in order to add (later) a UIPageControl. I've ...
3
votes
1answer
324 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; ...
2
votes
2answers
528 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 ...
0
votes
1answer
92 views

Zooming image smaller than UIImageView

I want to have a larger frame than an image so i do something like this: And of course i have UIScrollViewDelegate and i handle the zooming. But there is one problem. When i zoom picture i can ...
1
vote
1answer
123 views

Update label when UIScrollView pages iOS

I have a view controller than contains a UIScrollView at the top half of the screen. On the bottom half I have a label. This is the detail view for a table, so once you select an item from the table, ...
1
vote
1answer
95 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 ...
0
votes
1answer
300 views

scrollview sub uiscrollviews uiimageview viewForZoomingInScrollView

I have main UIScrollView mainScrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 440)]; mainScrollView.pagingEnabled = YES; imageScrollView.contentSize = CGSizeMake(320 * [myImage ...
0
votes
1answer
92 views

Keeping the State of UIScrollView iOS

I am implementing UIScroller View into my iPhone App. I have around 50 button in my scrollview and once a user click a button the Action will take him/her to another UIViewController. It is working ...
0
votes
1answer
1k views

Lazy Loading UIScrollView - how to make scrolling smoother

I have accomplished lazy loading in a scrollView like this: -(void)scrollViewDidScroll:(UIScrollView *)myScrollView { int currentPage = (1 + myScrollView.contentOffset.x / kXItemSpacingIphone); ...

1 2 3 4