Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The events like motionBegan: or motionEnded: used for monitoring shakes can be fired only when there is a first responder in my view. Okay, so I can make the view first responder like this: [self.view becomeFirstResponder];. But the view cannot be a first responder by default (why?) so I need to create a UIView subclass and override the default canBecomeFirstResponder to YES. How is this UIView subclass gonna help exactly? How does this all work? Please help.

share|improve this question

1 Answer

Check out this guide, especially the stuff about first responder: http://www.raywenderlich.com/5138/beginning-storyboards-in-ios-5-part-1

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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