I have a situation similar to these two posts (1907297 AND 689684) and to describe my situation most concisely, I present this text/graphical layout (similar to what you'd see in IB, dots used to enforce indent levels)

UIView (MainView: 320x460)
. .UIScrollView (ScrollView: 320x460)
. .UIView (OverlayView: 320x40)
. . . .UIButton (ArbitraryButton1)
. . . .UILabel (ArbitraryLabel1)
. . . .UILabel (ArbitraryLabel2)

The goal here is for the OverlayView to serve as a unified, transparent container to position and display some arbitrary buttons/labels on top of the ScrollView. These buttons/labels should remain stationary while the content in the ScrollView beneath moves with user swipes. The buttons/labels may sometimes be hidden/unhidden/scaled in unison (with animation) which is what makes it handy to have them all grouped in the single OverlayView.

The trouble is that, while taps on the OverlayView seem to transmit right through to the underlying ScrollView just nicely, swiping motions have no effect. I can detect/intercept the swipes by overriding the

-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event

method in the OverlayView, however I haven't yet found a way to properly pass those along to the ScrollView in a way that makes it scroll. Evidently the touchesMoved method is not what UIScrollView uses to detect/interpret swipes?

All the other similar posts I've researched have either found a different solution that wouldn't work in my case or have just gone unsolved. I've also seen mention of employing touchesShouldBegin / touchesShouldCancel though I don't grasp how that would be implemented. Anyhow, still hopeful that there's some insight from the community that can allow me to come up with an elegant solution for this - any sample code would be fantastic.

Thanks in advance, Joel.

P.S. - I should also mention that I need to make this compatible with iOS 3.0 so I think trying to use UIGestureRecognizers is out.

link|improve this question
I don't suppose you ever solved this? – mahboudz Mar 27 at 11:22
Have you solved it yet? – Nicolas S May 1 at 18:12
feedback

2 Answers

How about, at runtime in viewDidLoad you take the buttons out of the container view and place them in the view as subviews directly (and get rid of the container view)? Then there's no container view to intercept swipes but you can still use a view to group things in IB.

Also potentially you could put the container view in as a subview of the scroll view instead, and in the scroll view delegate keep re-positioning the view whenever the user scrolls. That would seem to have a high potential for being jittery but may be worth a try.

Also if the containing view is a visual container and you need to see it, you could instead use a CALayer that was placed in the superview on top of the CALayer for rendering the scroll view, since CALayers have nothing to do with input and would not each touches.

link|improve this answer
feedback
overlayView.userInteractionEnabled = NO;
link|improve this answer
That'd be handy, but from all of my experience that will disable the buttons contained with OverlayView as well. I guess I didn't state it explicitly, but I do want the buttons to remain functional. – MobileJoel Mar 3 '11 at 22:22
As long as the buttons are explicitly set to YES, they will work. – Mark Adams Mar 3 '11 at 22:25
Hmmm...this is not the behavior I'm seeing (though I'm really hopeful it's true). For convenience sake, I've been testing different userInteractionEnabled settings via the checkboxes in IB. Does this have to be set programmatically instead? Anybody have sample code or additional insight that can confirm or disconfirm? Was this a change possibly implemented in iOS 4.x? – MobileJoel Mar 3 '11 at 23:48
1  
Hate to say it, but I just built a dead-simple app with one UIView that contains one UIButton. Whether its userInteractionEnabled is set to TRUE within NIB or programmatically, the button doesn't work if userInteractionEnabled of the view that contains it is set to FALSE. Would be ecstatic if someone can provide a counter-example, otherwise back to square one as in original post... – MobileJoel Mar 4 '11 at 0:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.