0

我目前正在对我的应用程序进行更新 3,我想添加摇动 iPhone 并让它进入我的 UITableView 中的随机单元格的功能。我知道 Apple 建议不要做这种手势,但我想添加它或至少尝试一下。

任何帮助,将不胜感激!

4

1 回答 1

0

用这个

-(void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event
{
       if(motion == UIEventSubtypeMotionShake)
       {
          NSLog(@"Shake");
       }
}
-(BOOL)canBecomeFirstResponder
{
    return YES;
}
于 2013-07-02T11:31:45.670 回答