Tagged Questions

A responder object is an object that can respond to events and handle them. UIResponder is the base class for all responder objects, also known as, simply, responders. It defines the programmatic interface not only for event handling but for common responder behavior. UIApplication, UIView, and all ...

learn more… | top users | synonyms

8
votes
7answers
4k views

How to cancel a sequence of UITouch events?

I have a UIImage view that responds to touch events. I want to cancel the touch sequence, i.e., further calls to touchesMoved:, if the touch goes outside of certain bounds. How can I do that? I know ...
7
votes
1answer
647 views

UIGestureRecognizer receive touch but forward it to UIControl as well

How would you allow a UIGestureRecognizer of a UIView to receive a touch event but also make sure that another, underlaying/overlaying UIView also receives that very same touch event? Lets say I have ...
7
votes
2answers
551 views

Passing touch events to appropriate sibling UIViews

I'm trying to handle touch events with touchesBegan in an overlay to a parent UIView but also allow the touch input to pass through to sibling UIViews underneath. I expected there would be some ...
5
votes
1answer
514 views

How do I add the UIApplicationDelegate to the end of the UIResponder chain?

I'm trying to provide an IBAction method for common functionality that is required at various parts of the app. i.e. Login is implemented modally, and if it succeeds results in a notification that ...
4
votes
2answers
2k views

UIGestureRecognizer blocks subview for handling touch events

I'm trying to figure out how this is done the right way. I've tried to depict the situation in this image. I'm adding a UITableView as a subview of a UIView. The UIView responds to a tap- and ...
4
votes
1answer
2k views

Example of UITextField ResignFirstResponder with Monotouch

I'm a newbie. I can't figure out how and where to call ResignFirstResponder to get rid of the keyboard when the user finished entering the text in an UITextField. I'm a bit confused by the UIResponder ...
3
votes
1answer
82 views

Why is UIResponder inputAccessoryView atomic?

I'm using inputAccessoryView for one of my custom subclasses of UIViewController, which subclasses UIResponder. The Apple Developer Class Reference for -[UIResponder inputAccessoryView] states: ...
3
votes
2answers
464 views

How to ignore touch events and pass them to another subview's UIControl objects?

I have a custom UIViewController whose UIView takes up a corner of the screen, but most of it is transparent except for the parts of it that have some buttons and stuff on it. Due to the layout of the ...
3
votes
1answer
917 views

iPhone: Click view behind transparent UIScrollView

I have a UIScrollView that is set to have a clear background. Part of the scrollview does have content, but part does not (so it shows other views behind it). I would like to be able to click ...
3
votes
2answers
4k views

UIView, its superview and touchesBegan:

Suppose I have a UIViewController subclass that takes care of some UIViews. These UIViews are added as subviews of the UIViewController's view property): UIViewController: - (void)viewDidLoad { ...
2
votes
1answer
144 views

UIResponder class and first responder roles

I read in the UIResponder class reference: There are two general kinds of events: touch events and motion events. The primary event-handling methods for touches are touchesBegan:withEvent:, ...
2
votes
1answer
194 views

Understanding system logic for first responder

I'm confused about severals first responder points: If I call - becomeFirstResponder, does system call – canBecomeFirstResponder first? Why? Why are there both - becomeFirstResponder and – ...
2
votes
1answer
199 views

UIResponder Troubles

Tonight I've been battling with UIResponder. Here's my predicament. If I put in -(BOOL)canBecomeFirstResponder{ return YES; } to my mainViewController then I can get shake events.. ...
2
votes
2answers
480 views

Why UIViewController is a subclass of UIResponder?

What's the purpose for making UIViewController a subclass of UIResponder? Was it done solely to pass the rotation events? I could not find any definitive info on that in the docs. Update I ...
2
votes
1answer
3k views

UIWebView without Copy/Paste and selection rectangle when showing documents

In my App I want to disable the Copy/Paste/Cut of contents that are showed by a UIWebView object. To achieve this, I created a UIWebView subclass and overrode the - (BOOL)canPerformAction:(SEL)action ...
1
vote
1answer
132 views

keyboardWillShow called twice

I have a view with keyboard notifications such as keyboardWillShow and keyboardWillHide All the codes handles with the notification I use is taken from Apple's sample code "KeyboardAccessory" When I ...
1
vote
4answers
287 views

Dismiss keyboard with swipe gesture (as in Message app)

When the keyboard is showing on the iPhone's Messages app, if the user begins a swipe down from the messages tableview and continues into the keyboard area, the keyboard will begin to dismiss. If they ...
1
vote
2answers
321 views

How do Responder Chain Works in IPhone? What are the “next responders”?

This is what the documentation: If the first responder [to an event or action message] cannot handle an event or action message, it forwards it to the “next responder” in a linked series called the ...
1
vote
1answer
279 views

UIResponder chain help

I'm having trouble getting my UIButtons, UIScrollViews etc working in this situation: I have the base UIViewController, which is the root controller of the UIWindow. Above that layer I have some ...
1
vote
1answer
368 views

Touches began in UITableViewController

I am defining this method in my UITableViewController subclass: - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { [super touchesBegan:touches withEvent:event]; NSLog(@"touch ...
1
vote
1answer
59 views

Do I have to subclass in this case?

I have a UIViewController and a UITextView in it. I want to get touchesbegan method in UIViewController, but of course, it's being blocked b the UITextView. So, do I have to subclass UITextView to ...
1
vote
1answer
248 views

UIResponder - didBecomeFirstResponder?

is there any way to get notified when e.g. a UITextView becomes first responder? I'm currently subclassing & overriding - (BOOL)becomeFirstResponder but the problem is that this happens while the ...
1
vote
1answer
340 views

resignFirstResponder fails to dismiss my custom keyboard on iPad. Why?

I've created a custom keyboard and used the inputView property to associate it with a UITextField. When the "dismiss" button on my custom keyboard is pressed, I call resignFirstReponder on my text ...
1
vote
1answer
401 views

UIView take away first responder status

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 ...
1
vote
1answer
652 views

Dragging a UIView created after touchesBegan

I have a few UIView subclasses that exist in a kind of inventory. When you tap one, another draggable version is placed over top of it. I want the inventory versions to stay put while you drag others ...
1
vote
2answers
851 views

UIGesture failing for unknown reason in IOS

I have a UITextField that is the subview of UIScrollView I have there exist a single tap gesture (or perhaps the older touch) as part of UITextField that makes it the first responder. I wanted to add ...
1
vote
1answer
256 views

iPad not resigning responder

I have a table with 3 UITextFields added to the content views of cells (1 row per section). I have a 4th section that I insert so that I can scroll the particular field to be above the keyboard. The ...
0
votes
2answers
39 views

Adding Two Listener For UIResponder

I have two view Controllers added as a sub-view in the UIWindow. Now the problem is one of the view gets view rotation calls but second is not getting calls for view changing orientation. Now my ...
0
votes
1answer
47 views

touchesBegan ignored in subclass of uiresponder

working on an ios app with objective c and using xcode. I have a class that inherits from another class that inherits from UIResponder and it contains a view. I have a touchesBegan within the sub ...
0
votes
1answer
55 views

Trying to make a Custom UITableViewCell with a UITextField becomeFirstResponder when Editing

I have a UITableViewController with custom UITableViewCells that contain a UITextField. When switching the table view into edit mode, I add a new cell to the bottom of the table and would like to make ...
0
votes
0answers
33 views

Empty application template Xcode 4

Why does the "empty application template" from Xcode 4 inherits from UIResponder instead of NSobject? #import <UIKit/UIKit.h> @interface _QuizAppDelegate : UIResponder ...
0
votes
1answer
39 views

get hold of UIResponder instance metods on UIScrollView. iPhone

on the current project I am working on, on one of the views, I have a UIView and on top of it UIScrollView which is constructed from the interface builder. I have implemented the following ...
0
votes
2answers
106 views

UITextField unable to become first responder if added to UITableViewCell via accessoryView

Like many other users, I'm trying to set throw a UITextField into a UITableViewCell to be used for editing a row. But instead of adding a new view, I'm trying to use the accessoryView property. At ...
0
votes
2answers
70 views

Sibling subview does not receive touches in iPhone

I have a view (parent) with two subviews, one on top (topChild) of the other (bottomChild). If I tap on the screen only topChild and parent receive the touch event. What should I change to propagate ...
0
votes
0answers
28 views

InputAccessoryView Button Touch Event Triggers Desired Event Plus Event of View Under Accessory View

I have an input accessory view with a button. When the keyboard appears, the input accessory view covers another view that is touch enabled. Not only is the button triggering the desired event ...
0
votes
1answer
83 views

UITextField subview of UIImageView is not responding to touch events

I have a UITextField that responds to touch events when it is added as a subview of self.view. When I add it as a subview of a UIImageView it does not respond to touch events any more. I make it a ...
0
votes
1answer
47 views

shake detection in iPhone which is presented as ModalViewController from appdelegete?

although this is a answered question here. the solution works fine in rootviewcontroller of the appdelegate. if same methods are written in a viewcontroller which is presented as a ...
0
votes
3answers
101 views

iphone check if UITextField exists using Tag

Is there a way to detect if a UITextField exists using the Tag property? Essentially i have a number of textfields created dynamically and I want to tab through the fields using the return key on the ...
0
votes
1answer
85 views

Perform copy/cut from UIResponderStandardEditActions

These are standart actions for UIMenuController declared ...
0
votes
0answers
65 views

UIResponder Class issue with idleTimerDisabled

in the AppDelegate.h file i am using like @interface AppDelegate : UIResponder <UIApplicationDelegate> but then i get a error says self.idleTimerDisabled property not found on the ...
0
votes
2answers
218 views

UITableViewCell selection over UITextView

I get stuck with my cell selection. I have custom cell with UITextView object embedded in. It is not editable, not scrollable, with user interaction enabled. And I can not select cell over this view. ...
0
votes
0answers
267 views

Manually loaded MGSplitViewController is not in responder chain

I'm running into a serious problem while connecting a Matt Legend Gemell's MGSplitViewController. to a UITabBarController. To get that working I decided to derive a UIViewController class named ...
0
votes
3answers
282 views

Why does AppDelegate inherit from UIResponder?

I noticed that when creating a new project with the iPhone Master-Detail template in Xcode 4.2 beta 4, it does: // AppDelegate.h @interface AppDelegate : UIResponder <UIApplicationDelegate> ...
0
votes
2answers
67 views

Question about singletons in Cocoa Touch

I'm quite new to OOP and design patterns, but I've implemented the Singleton pattern once before to pass static arrays and string objects between different ViewControllers. I was wondering if there ...
0
votes
0answers
130 views

how do i make UIKeyInput make repeated deleteBackwards calls

Currently I am using UIKeyinput but it is only sending a single delteBackward event even when I hold down the delete key for a long time. How can I make it send me multiple event calls when I hold ...
0
votes
1answer
269 views

Another problem with UIResponder and event delivery

I'm trying to implement a UIResponder object that will allow me to record screen activity, then pass the event on to the next responder to allow the application to proceed as normal. I've been ...
0
votes
3answers
538 views

Change the FirstResponder

Hola guys. I'm experiencing a little problem with touch handling and UIResponder. My goal is to manage a single touch (moved) to interact with different views. I added a gesture recognizer to my ...
0
votes
2answers
236 views

Touches getting lost when I animate inside of touchesBegan

I'd like to have 4 UIViews on the screen and animate their background color when touched and change it back when touches end. - (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event { ...
0
votes
1answer
709 views

touchesEnded:withEvent: from UIScrollView First Responder

I've made a UIScrollView the first responder. I need to maintain touch events to a -touchesEnded:withEvent: method on a view behind it. I've tried using the -nextResponder method and that failed. I've ...
0
votes
3answers
97 views

I am Using a previous app but getting error in UIResponder.h

I am using a app of previous developer ,but when i compile it ,ig shows 5 errors at UIResponder.h and UIEvent.h error 1: ...

1 2