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.

I have an application that needs to detect a shaking motion to start/restart its activity. It is already on-Line, but now I want to add the new feature of iAd. I've implemented all the needed methods, but I have a problem: when I enter the Ad and then exit, the device can't catch the shaking motion anymore.

Ideas? Hint.

Thank you.

share|improve this question

2 Answers

In the below stackoverflow link:- How to use Shake API in iPhone SDK 3.0?

detailed info is provided. check this.

hope it helps

share|improve this answer
Solved and posted the answer. Thank you. – IssamTP Feb 1 '11 at 16:05
up vote 0 down vote accepted

Solved, actually I get the problem reading diggin into answers linked by Srinivas.

The problem was that when the Ad is end and returns back the control to my UIViewController, this one is no more the First Responder setted on his view. The solution:

- (void)bannerViewActionDidFinish:(ADBannerView *)banner {
   [[self view] becomeFirstResponder];
}

Nothing more.

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.