我可以为目标 c 函数的第一个参数提供连接参数吗?

发布于 2025-01-10 02:15:16 字数 415 浏览 0 评论 0原文

- (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 技术交流群。

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

发布评论

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

评论(1

随风而去 2025-01-17 02:15:16

在 Objective c 中,您无法为第一个 Argument 或参数定义标签,其约定如下:

- (void)testThisFunctionWithJoiningArgument1:(id)argument1 {
    NSLog(@"%@", @"Hello: ");
}

- (void)methodNameWithFirstParam:(id)firstParam secondPraram:(id)secondParam {
    NSLog(@"%@", @"Hello: ");
}

In objective c you can't define a label for first Argument or parameter the convention for this is like:

- (void)testThisFunctionWithJoiningArgument1:(id)argument1 {
    NSLog(@"%@", @"Hello: ");
}

- (void)methodNameWithFirstParam:(id)firstParam secondPraram:(id)secondParam {
    NSLog(@"%@", @"Hello: ");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文