点语法和合成

发布于 2024-11-25 08:26:16 字数 279 浏览 2 评论 0原文

我想知道合成是否对点语法有某种支持。我的目标只是了解更多信息 - 我意识到我可以通过自己定义吸气剂来实现目标。到目前为止,我一直在寻找有关该主题的信息,但没有取得多大成功。

我想做的例子:

@synthesize name = self.someObject.name;

作为一个吸气剂,将是这样的:

-(NSString*)name
{
    return self.someObject.name;
}

I was wondering if synthesize has some sort of support for dot syntax. My goal here is just to learn more about it - I realize I can achieve the goal by defining the getter myself. I have been looking for info on this topic without much success so far.

Example of what I want to do:

@synthesize name = self.someObject.name;

Which, as a getter, would be something along the lines of:

-(NSString*)name
{
    return self.someObject.name;
}

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

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

发布评论

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

评论(1

寄离 2024-12-02 08:26:16

不,你不能这样做。 @synthesize= 后面的值必须引用当前类的 ivar。正如您所指出的,您可以自由地实现上述 getter,但 @synthesize 不会这样做。

No, you can't do this. The value after the = in @synthesize must reference an ivar of the current class. You're free to implement the above getter as you've noted, but @synthesize won't do it.

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