为什么“(UIButton *)sender”而不是“UIButton *sender”?

发布于 2025-01-04 04:33:30 字数 203 浏览 0 评论 0原文

在 Objective-C 中,“(UIButton *)sender”是什么意思,为什么不是“UIButton *sender”?或者用一些 NSObject 代替 UIButton。这更多是关于星号优先级的问题......

- (IBAction)digitPressed:(UIButton *)sender {
   //...
}

In Objective-C, what does "(UIButton *)sender" mean and why is it not "UIButton *sender"? Or some NSObject in place of UIButton. This is more a question about the precedence of the asterisk...

- (IBAction)digitPressed:(UIButton *)sender {
   //...
}

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

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

发布评论

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

评论(1

╰沐子 2025-01-11 04:33:30

在这种情况下,这与优先级无关。括号不是强制转换。

这是 ObjC 中方法声明的语法,它表示名为 sender 的参数的类型为 UIButton *

星号与 UIButton 一起出现,因为它们一起命名参数的类型。在本例中,由于它是来自按钮的操作方法,因此您使用的是 UIButton*。当然,在一般情况下,方法可以具有任何类型的参数,只要调用者正确调用它即可。 :)

It's not about precedence in this case. The parentheses aren't a cast.

This is the syntax in ObjC for a method declaration, and it says that the parameter called sender is of type UIButton *.

The asterisk goes with the UIButton because they together name the type of the argument. In this case, since it's an action method coming from a button, you're using a UIButton*. In the general case, of course, a method may have parameters of any type, as long as the caller is calling it correctly. :)

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