我可以为目标 c 函数的第一个参数提供连接参数吗?
- (void)testThisFunction:joiningArgument1(id)argument1 {
NSLog(@"%@", @"Hello: ");
}
本教程讨论如何在调用站点公开“连接参数” 。但是,当我尝试为第一个参数创建连接参数时,我可能会收到 Expected method body
错误,因为它破坏了语法。
我可以给第一个参数一个“连接参数”还是不允许?如果允许的话,语法是什么?
- (void)testThisFunction:joiningArgument1(id)argument1 {
NSLog(@"%@", @"Hello: ");
}
This tutorial talks about how there are "joining arguments" which are exposed at the call site. However, when I try to create a joining argument for the first argument, then I get Expected method body
error likely because it breaks the syntax.
Can I give the first argument a "joining argument" or is that not allowed? If it is allowed, what is the syntax?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Objective c 中,您无法为第一个 Argument 或参数定义标签,其约定如下:
In objective c you can't define a label for first Argument or parameter the convention for this is like: