对摇动手势执行 IBAction

发布于 2024-12-11 20:13:53 字数 287 浏览 0 评论 0原文

我已将 iPhone 应用程序设置为“摇一摇!”当用户摇动 iPhone 时,到 NSLog

- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event {
if (motion == UIEventSubtypeMotionShake) {
NSLog(@"shake!");
}
}

这正在工作。我的代码中也有一个 IBAction 。我可以设置它在摇动时执行IBAction吗?

I have set my iPhone app up so that it writes "Shake!" to the NSLog when the user shakes the iPhone:

- (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event {
if (motion == UIEventSubtypeMotionShake) {
NSLog(@"shake!");
}
}

and this is working. I have got an IBAction in my code as well. Can I set it to do the IBAction when it is shaken?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

z祗昰~ 2024-12-18 20:13:53

你可以调用任何你喜欢的方法,但是如果你设置为 IBAction 的方法声明包含发送者,那么你将需要发送 nil 作为参数......

-(IBAction)doSomething:(id)sender

然后你可以调用......

[self doSomething:nil];

You can call any method you like, but if the method declaration you have set as an IBAction contains a sender then you will need to send nil as the parameter....

-(IBAction)doSomething:(id)sender

Then you can call...

[self doSomething:nil];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文