方法名称约定
是:
- (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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在谈论返回类型和方法名称的右括号之间的一个空格。
这种事情完全是个人喜好问题。
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.