Tagged Questions
0
votes
0answers
23 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
36 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
35 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
30 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
38 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 ...
2
votes
1answer
77 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
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
100 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
87 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
18 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
25 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
0answers
54 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
38 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
82 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
96 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
116 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
66 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
128 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
117 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
56 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
56 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
368 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:
...
1
vote
1answer
143 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
votes
1answer
637 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
312 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
48 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
115 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
239 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
438 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
83 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
113 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
84 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
273 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
87 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
vote
2answers
499 views
Restricting UIScrollView scrolling to only one page at a time
I would like to limit a UIScrollView to only being able to scroll one page at a time.
In other words, even when the user flicks really fast, I want the UIScrollView to be restricted to scrolling only ...
0
votes
1answer
138 views
Why can't I add a UIScrollView to a UIImageView (with it working properly)
I'm working on an app. Here I describe a simplified version of a strange problem I am experiencing.
I have a storyboard created View Controller with a UIImageView also created in the storyboard.
...
1
vote
1answer
460 views
Detect UIScrollview scrolling past bottom
I'm trying to create functionality similar to Reeder where you are introduced to new content if you scroll below or above the content in a scroll view.
I thought I was heading in a good place with ...
0
votes
0answers
513 views
UIScrollView scrollViewDidScroll not firing
I have a UIScrollView that has a bunch of text in it. As the user scrolls up I create a little color-to-transparent view at the top so the text doesn't look like it just drops off.
I have the ...
5
votes
2answers
572 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
3answers
427 views
Replacing image in UIScrollView on selected item
I created simple UIScrollView that have images. Each time an image pressed i want to change that image, how can I do it?
I creating this UIScrollView and initializing it with NSMutableArray with ...
0
votes
2answers
1k views
UIScrollView did Scroll
I want to show an image that stays on the page for 5 seconds but appears everytime my scrollview scrolls. So obviously i need to marry animation for the UILable and some method of UIScrollView. Im not ...
0
votes
1answer
102 views
Remove glitch in implementing UIScrollView Album during transition
Have implemented a UIScrollView album where in the +2 and -2 positioned SubViews are generated when scrollViewDidEndDragging is called but adding the Subviews is a costly operation and hence the slide ...
1
vote
0answers
30 views
How to set the page of the scrollView in SLNumberPickerView Sample?
I am trying to use a modification of the SLNumberPickerView (see here: http://www.cocoacontrols.com/platforms/ios/controls/slnumberpickerview) and like to set the page of the scrollView from my ...
4
votes
0answers
147 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 ...
0
votes
0answers
45 views
UIScrollView stop-positions issue
I have the following issue with a UIScrollView object.
I want the object to stop at given positions.
Eventhough I have implemented scrollViewDidEndDragging:willDecelerate: and ...
0
votes
1answer
410 views
how to disable vertical scrolling while user scrolls horizontally ?
I have a UIScrollView in a UIView. I'm using my UIScrollView in pagingEnabled mode. I don't want to allow users scroll bidirectionnally at the same time.What i mean is,if user starts to scroll ...
1
vote
0answers
196 views
In uiscrollviewdelegate, is it possible to set targetContentOffset to a negative value?
I have a UIScrollView which is the same width as its superview. It has a very wide contentSize and scrolls horizontally.
I am trying to use the delegate method ...
0
votes
1answer
230 views
UIScrollView issue: forbid to “scroll to empty space”
I have UIScrollView with 3 pages. It's difficult for me to explain my issue, that's why I will try to explain it comparing with table view.
When you have table view, you can scroll to see space that ...

