motionBegan: Not Working

I assume you want to implement this in a subclass of UIViewController. Make the UIViewController capable of becoming first responder: – (BOOL)canBecomeFirstResponder { return YES; } Make the UIViewController become first responder in viewDidAppear:. – (void)viewDidAppear:(BOOL)animated { [super viewDidAppear:animated]; [self becomeFirstResponder]; } If the view contains any element, such as a UITextField, that might become … Read more