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 implemented the

 - (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event {

to capture the shake when some one ends the shaking of iPhone, but I need to determine the start of shake, how can o do this?

share|improve this question
How do you know it's a shake at the start of the shake? At that point, it's just an unknown movement. – ceejayoz Jun 14 '11 at 15:08
@ceejayoz, you don't know at the time, but you still have to notice the beginning of a motion event that could become a shake. It's like a double-click: you can't know that it's a double-click when it starts, but if you don't look at every click that could begin a double-click, you'll never recognize any double-clicks at all. – Caleb Jun 14 '11 at 15:13

2 Answers

- (void)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event {

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.