Imagine the situation when you have UITableView placed into UIScrollView. If you tap on table view and begin vertical moving - UITableView become first responder and will scroll vertically. But if you will move finger horizontally - UIScrollView become first responder and will scroll horizontally.

I have similar situation but instead of UIScrollView I have simple UIView object that intercept - (void)touchesMoved: events and make moving (kinda self made ScrollView).

But how I can do the same trick that UIScrollView do - determine horizontal moving and take away first responder status from UITableView???

Thanks in advance!!!

link|improve this question

It may not be that UIScrollView "takes away" first responder from the UITableView. Instead, it may be the trick that the UITableView in not interested in the swipe and "passes it along" the responder chain. Why don't you try enabling swipe to delete in your table and see if you get any horizontal scrolling in that case. – Bogatyr Mar 2 '11 at 18:08
ok, I understand the idea, will try it tomorrow and write it back. Thanks – Dmitry Mar 2 '11 at 21:14
nope. after removing of the table the first responder status lost somewhere, I guess. Anyway, UIView do not get first responder status after UITableView removing. Any ideas??? – Dmitry Mar 3 '11 at 11:01
I found how to remove first responder status from UITablView. Simply overriding touchesShouldCancelInContentView and touchesShouldBegin methods. But how to assign first responder status to another view??? – Dmitry Mar 3 '11 at 11:13
feedback

2 Answers

You could try overriding canBecomeFirstResponder in your view and returning the appropriate value at the appropriate time.

link|improve this answer
when these methods will be called? I just tried to place it on my UIView (self made scroll view) and it's not called at all.. – Dmitry Mar 2 '11 at 17:46
also, as I understand, canBecomeFirstResponder should be called once in the beginning, But I need a time to determine horizontal or vertical moving – Dmitry Mar 2 '11 at 17:47
feedback

Have you tried throwing a UIPanGestureRecodnizer on the view. You should then be able to set a @selector which will allow you to handle the event in question. Also with pan you can choose to only change the x element and leave the y element alone. Further more with the pan element attached to a view you will not have to worry about having a first responder. Pan elements can a lot of the time be used as a swiping element if you had acceleration and or deceleration. Beyond that I would say you could also add a UISwipeGestureRecognizer element left and right but I do not think you get information such as how far the user swiped meaning, if you want the screen to snap back when the user has not made it far enough to the right or left then you will not have that option. Also, swipe will not give the same effect as the UIScrollView but UIPanGestureRecognizer can, if you do a little extra coding. The extra coding would be observing the position of the x value and then using a little bit of animation for the view to snap to the right or left when the user lets go of the view. Other then that the view should and will follow the finger if you set the x properly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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