Objective C 初学者语法观察

发布于 2024-12-09 21:15:08 字数 380 浏览 0 评论 0原文

可能的重复:
@synthesize window=_window 有什么作用?

当你 @synthesize 类似 buttonPressed ,你需要这样做:

@synthesize buttonPressed = buttonPressed_; 

我一直在关注一些教程,并且这个问题不断出现。为什么?

Possible Duplicate:
What does @synthesize window=_window do?

How come when you @synthesize something like buttonPressed , You need to do this:

@synthesize buttonPressed = buttonPressed_; 

I've been following some tutorials and this keeps coming up. Why?

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

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

发布评论

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

评论(1

城歌 2024-12-16 21:15:08

您不必这样做。

默认情况下,如果您的合成访问器应与实例变量具有相同的名称,则 @synthesize variableName 确实有效。

在您的示例中,实例变量称为 buttonPressed_ 但您的访问器方法将省略 _,因此仅称为 setButtonPressedbuttonPressed

You do not have to do it that way.

By default, @synthesize variableName does work, if your synthesized accessors shall have the same name as your instance variable.

In your example, the instance variable is called buttonPressed_ but your accessor methods will omit the _ and thus just be called setButtonPressed and buttonPressed.

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