4
votes
3answers
39 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
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
37 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
40 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
1answer
97 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
93 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
110 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
94 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
2answers
41 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: - ...
1
vote
1answer
87 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 ...
1
vote
3answers
122 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
73 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 ...
1
vote
2answers
121 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 ...
1
vote
1answer
145 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
90 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
votes
1answer
663 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
327 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
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
252 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
457 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
84 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
88 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
279 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
506 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 ...
1
vote
1answer
465 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
521 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 ...
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
103 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
votes
1answer
151 views

Delegates and methods not working as expected

I've been trying to fix a problem with an app I'm working on. After searching and browsing questions here I think there's a problem with delegates and some methods. The code is for implementing a ...
0
votes
1answer
412 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 ...
0
votes
1answer
234 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 ...
1
vote
2answers
438 views

scrollViewDidScroll delegate is invoking automatically

I am using scrollViewDidScroll delegate in my application. But, many times, even though I dint start scrolling, this delegate is getting invoked which is creating a lot of problem. I heard that even ...
0
votes
1answer
55 views

drag for two UIScrollViews

I have two UIScrollViews, aScroll and bScroll. And the bScroll is the aScroll's subView. Problem I am facing is, i want to drag in bScroll and do not affect the aScroll. Can someone help me here?? ...
0
votes
1answer
424 views

UIScrollView is not zooming

I'm having issue with the zooming feature of UIScrollView. It does not work at all. I have read similar posts and none of the fixes others used seem to work for me. My viewController references ...
0
votes
1answer
79 views

In UIScrollview restrict a particular delegate from the uiscrollview delegate list

From the list of available UIScrollview delegate list . I want to restrict a selective uiscrollview delegate function namely: (UIView *)viewForZoomingInScrollView:(UIScrollView *)scrollView; I want ...
0
votes
1answer
112 views

Preventing screen redraw at max/min zoom of UIScrollView

My app has a relatively expensive screen redraw. In its original form, we had the minimum zoom of the UIScrollview set to 100% and the max at 400% scaling, and in scrollViewDidEndZooming, we redraw ...
0
votes
2answers
167 views

UIScrollview subviews show incorrect frames when enumerated

Hi guys i have an issue i cannot get my head around. I have broken down this issue into its own project and i can still reproduce it. I have a scrollview say with a 30 uibutton layed out. (for ...
2
votes
2answers
378 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 ...
0
votes
3answers
604 views

UIScrollViewDelegate not firing methods

I have a View that has a UIScrollView, with some text (loaded via JSON). I need to detect when the user has reached the end of the scroll (I have seen other questions about it here) but the problem ...
0
votes
0answers
193 views

UIScrollView zoom issue

I have UIScrollView. I should show small image first, and big image , when I zoom image. If I use this code, everythink is OK: - (UIView *)viewForZoomingInScrollView:(UIScrollView *)scrollViewCalled ...
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 ...
4
votes
1answer
329 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 ...
0
votes
0answers
119 views

Auto zoom to predefined position in photo

I am writing a small custom presentation app. There is no need for it to be very general. I want to zoom in on a series of places in a particular photo automatically with a button click. Next ...
2
votes
1answer
404 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 ...
0
votes
1answer
764 views

How can you pin a header overtop of a UIScrollView that only scrolls in the x dimension?

I have a UIScrollView that is displaying some graphical data and it has a x axis at the top of the screen. Currently when you scroll down the x axis disappears because it is just a subview of ...
3
votes
1answer
617 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 2