方法名称约定

发布于 2024-11-01 16:16:11 字数 300 浏览 3 评论 0原文

是:

- (void) myMethodName;

形式不好,好吧,或者只是完全错误,相比之下:

- (void)myMethodName;

我看到它是双向的。对

- (IBAction) myActionName:(id)sender;  

vs 也一样

- (IBAction)myActionName:(id)sender;

Is:

- (void) myMethodName;

bad form, OK, or just plain wrong, compared to:

- (void)myMethodName;

I see it done both ways. Same for

- (IBAction) myActionName:(id)sender;  

vs.

- (IBAction)myActionName:(id)sender;

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

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

发布评论

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

评论(1

巷子口的你 2024-11-08 16:16:11

您正在谈论返回类型和方法名称的右括号之间的一个空格

这种事情完全是个人喜好问题。

You're talking about one space in between the closing parentheses of the return type and the method name.

This kind of thing is all a matter of personal preference.

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