Objective-C –预期的标识符错误

发布于 2024-12-11 10:09:12 字数 321 浏览 0 评论 0原文

当我尝试编译代码时,出现预期的标识符错误。

CareerURL 在 .h 文件中是这样设置的:

@property (nonatomic, copy) NSString *careerURL;

在 .m 文件中是这样合成的:

@synthesize careerURL;

我真的不明白这里有什么问题。确切的代码在另一个视图控制器中工作。

在此处输入图像描述

I'm getting an expected identifier error when I try to compile my code.

careerURL is setup like this in .h file:

@property (nonatomic, copy) NSString *careerURL;

And synthesized like this in .m file:

@synthesize careerURL;

I really do not understand what is the issue here. The exact code works in another viewcontroller.

enter image description here

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

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

发布评论

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

评论(2

深居我梦 2024-12-18 10:09:12

您应该使用点 . 语法,

NSString *wtf = self.careerURL;

或者 Objective-C 消息语法,

NSString *wtf = [self careerURL];

不能同时使用

You should either use dot . syntax,

NSString *wtf = self.careerURL;

Or Objective-C message syntax,

NSString *wtf = [self careerURL];

Not both at the same time.

幻想少年梦 2024-12-18 10:09:12

您应该这样写:

 NSString *wtf = self.careerURL;

当您编写[object method]时,预计您希望从对象object调用方法method。如果您只想访问某个值(定义为@property),您可以键入:

[self nameOfValue];

self.nameOfValue;

You should write:

 NSString *wtf = self.careerURL;

When you are writing [object method] it is expected that you want to call method method from object object. If you want just access some value (that is defined as @property) you can type:

[self nameOfValue];

or

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