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.
0
votes
0answers
13 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 ...
2
votes
1answer
92 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.
...
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.
0
votes
0answers
38 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
32 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
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 ...
0
votes
0answers
42 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 ...
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 ...
0
votes
1answer
41 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 ...
0
votes
0answers
37 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
105 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 ...
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 ...
1
vote
1answer
282 views
UIScrollView zooming in a fixed point, and disable the pinch in/out
i'm stuck on a problem with UIScrollView
i wanna the scroll view be zoomed when the user tap on a specific point, and prevent the user to zoom in/out using Pinch Zoom Gestures, how can i do it?
...
0
votes
1answer
114 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 ...
3
votes
1answer
622 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 ...
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 ...
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 = ...
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 ...
0
votes
3answers
298 views
UIScrollView scrollRectToVisible:animated: is there a way that a method can be called when animation ends
Is there a way to know when the animation has end and uiscrollview has come to rest.
0
votes
0answers
19 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
26 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 ...
2
votes
2answers
465 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
2answers
42 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
55 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
43 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
93 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
104 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
124 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
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 ...
0
votes
3answers
2k views
UIScrollView Delegate methods clashing
I am using the following two UIScrollView delegate methods to call another method in my UIViewController:
-(void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
// do something
}
- ...
0
votes
1answer
135 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 ...
2
votes
2answers
836 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 ...
1
vote
2answers
123 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
59 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
57 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
387 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
290 views
UIScrollView Zooming Crashes App with Exc_Bad_Access
I am getting a Exc_Bad_Access error in main when I try to scroll my UIScrollView. This program is simple. I have A UIViewController added in AppDelegate. Then, here is the code in the ViewController. ...
-1
votes
1answer
666 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)). ...
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, ...
0
votes
1answer
96 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
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 ...
0
votes
1answer
93 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 ...
1
vote
2answers
332 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
103 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
49 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
116 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
258 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
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!
5
votes
2answers
584 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 ...
0
votes
1answer
85 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 ...




