vote up 0 vote down star

Hi all i want to know how to make subView added to content view of cell to become firstResponder.When i touch cell tableViewDidSelectRow methods get called.I have added customView as subView to cell.I have implemented delegate method which gets called when toches in custom view gets ended.But this method gets called after tableViewDidSelectRow method is called.I want first the delegate method to get called and then tableViewDidSelectRow .I have even set customView excluiveTouch property to YES.

flag

1 Answer

vote up 0 vote down

Definitely ,

  • (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event

will called after DidSelectRowFor . Because didSelect called as we click the cell and touchesEnded after when we removing the finger.

if u want touchesEnded must called before DidSelectRowFor than you have to override the some method. like

  • (BOOL)becomeFirstResponder in cell class as well as in custom class properly. also override

  • (UIResponder *)nextResponder this method to call next responder.

try once this . and let me know whether working or not?

link|flag

Your Answer

Get an OpenID
or

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