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
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
106 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
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
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 ...
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
1answer
281 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
3answers
442 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
104 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
152 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
236 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 ...
0
votes
1answer
493 views

why UIScrollView doesnt call it's Delegate?

the problem is I make a new UIScrollView at Xib and then link the delegate to owner.. some how the delegate doesnt called.. any clue? or simple example for UIScrollView sorry I am a new ios developer ...
1
vote
2answers
440 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
0answers
196 views

iPhone Facebook Style Menu - Crashing when scrolling uitableview

I am trying to implement a side menu like Path / Facebook. I created a UIViewController with a UITableView and a UIImageView. I setup everything in my app delegate by creating a navigationcontroller ...
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
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 ...
0
votes
0answers
195 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 ...
0
votes
2answers
237 views

Can't set image in UIScrollView after zooming

I use ImageScrollView to show image. At the begining I show only small image. And when user tries to zoom, I load big image. First I wanted to do this using this code: - (UIView ...
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. ...
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 ...
0
votes
1answer
542 views

UIScrollView subclass and custom delegate: detect scroll events on the subclass and on the delegate

I'm creating an UIScrollView subclass. On this subclass, I need to detect the scroll events, but I also want to enable the detection of scroll events on a delegate. Also, this UIScrollView subclass ...
0
votes
1answer
368 views

UIScrollView lags when adding UIView with multiple views

I've been working on a Crosswords app for a while and this problem keep returning no mater what i try. The actual game runs in an UIScrollView because the player should be able to zoom, pan etc. To ...
1
vote
1answer
110 views

Zooming uiscrollview also zoom anoher one

I have a screen in my project that contains 3 UIScrollView. These scrollviews contain an image, when i am trying to zoom one of the scrollview I dont know how but all of them are zooming together. ...
6
votes
2answers
457 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]]) { ...
0
votes
1answer
92 views

UIScrollViewDelegate not scrolling animated

I have created a subclass of UIScrollView that uses the UIScrollViewDelegate. I created it to work with OpenGL ES objects. I have the following code: -(void)scrollViewDidScroll:(UIScrollView ...
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
388 views

Nested UIScrollView

I have an issue with UIScrollViews in IPhone. I have a subview child of another one. The father scrollview displays a ViewController that contains itself another scrollview. If the scrollview child ...
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
1answer
107 views

How to compute the contentOffset at which the scroll view will halt after deceleration ended?

I need to perform some special things at exactly the position where the scroll view will stop deceleration, but I need to know that position before it finished decelerating. Is there a way to do it, ...
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
2answers
3k views

How to zoom a UIScrollView programmatically the exact same way as one I'm manually zooming

I have 2 UIScrollViews side by side, and a feature I'm working on is the ability to pinch and zoom on 1 UIScrollView, and have the other one next to it respond in the EXACT same way as the one I'm ...
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 ...
0
votes
2answers
925 views

When I set the delegate of a UIWebView's built-in UIScrollView, I lose the ability to pinch to zoom, how can I get it back?

I am using a UIWebView to show a PDF. I need to track some UIScrollView events, so I set the built-in UIScrollView like this: for(UIScrollView *s in webView.subviews) { s.delegate = self; } ...
0
votes
1answer
130 views

Difficulties in detecting touch while animating an imageview

I am trying to animate an image using following code: [UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:40]; [UIView setAnimationCurve:UIViewAnimationCurveLinear]; ...
1
vote
1answer
232 views

Can we control the speed of the Scrollview

I have a scroll view (shown in the picture below). It allows the user to jump/navigate between various sections in my app. The number of sections varies between 20 to 40 (which is pretty large). The ...
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 ...
0
votes
1answer
809 views

UIScrollView with images slideshow and timers

i'm trying to implement a slideshow of images with previews horizontaly and vertically, and i want to be able to do some stuff when the user stop scrolling and after 5 seconds do this stuff. I use 2 ...
0
votes
1answer
405 views

UIScrollview in UIactionsheet is not working

I have a view (objViewComments) that contains scrollview and its working fine. but now i have added this view in UIActionsheet using below code : myActionSheet = [[UIActionSheet alloc] ...
0
votes
1answer
618 views

Zooming within Nested UIScrollViews

Its a familiar topic Im creating a graphic novel using UIScrollview. The plan is to be able to page along the novel with a top level uiscrollview. Within this are a series of nested uiscrollviews ...
0
votes
1answer
702 views

UIScrollView not calling layoutSubviews while zooming on iOS 4.0

I've read many of the UIScrollView questions asked on here but none of them answered this problem. I have a UIScrollView that zooms a view containing other subviews. When a zoom is happening, I need ...
0
votes
1answer
247 views

accessing class file crashes when scrolling starts (UIScrollview)

hopefully someone will be able to help me. I have a UIScrollView on my page. The .h file has set the UIscrollviewdelegate. I have a class file called "Picture.h / Picture.m". - ...
1
vote
2answers
609 views

Getting row number in scrollViewDidEndDecelerating

when i use - (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView{ NSArray *visibleCells = [my_table visibleCells]; i want to know the number of the row (in my_table) that is visible ...
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 ...
5
votes
3answers
992 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 ...
0
votes
2answers
870 views

Subclassing UIScrollView/UIScrollViewDelegate

I'm trying to create my own custom UIScrollView, so that I can pass touch events from it to a delegate object which has logic to draw to an imageview inside the scrollview. If I remove the delegate ...
0
votes
3answers
1k views

How to detect whether page is scrolled or not in ScrollView?

I have an ScrollView for display PDF Pages. When I scroll the this shows me the second Page with paging enabled in ScrollView. I set the bounce property false for Scrolling. I want to display page ...

1 2