错误:错误:预期')'在“postData”之前

发布于 2024-11-04 13:05:26 字数 310 浏览 0 评论 0原文

如何修复此错误?

Error: error: expected ')' before 'postData'

NSTimer *timer;
timer = [NSTimer scheduledTimerWithTimeInterval:10.0                                         target:self
selector: @selector(postData:@"xyz")
userInfo:nil

                                    repeats: YES];

How to fix this error ?

Error: error: expected ')' before 'postData'

NSTimer *timer;
timer = [NSTimer scheduledTimerWithTimeInterval:10.0                                         target:self
selector: @selector(postData:@"xyz")
userInfo:nil

                                    repeats: YES];

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

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

发布评论

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

评论(2

会傲 2024-11-11 13:05:26

从计时器中作为选择器调用的函数不能有参数。如果我没记错的话,您可以使用 userInfo,它将数组或字典传递给选择器。

做这样的事情:

NSTimer *timer;
timer = [NSTimer scheduledTimerWithTimeInterval:10.0
         target:self
         selector: @selector(postData:)
         userInfo:@"xyz"
         repeats: YES];

- (void)postData:(NSTimer*)timer {
    NSLog(@"userInfo = %@", timer.userInfo);
}

Functions called as selectors from timers cannot have parameters. If I remember correctly, you can use userInfo, which passes an array or dictionary to the selector.

do something like this:

NSTimer *timer;
timer = [NSTimer scheduledTimerWithTimeInterval:10.0
         target:self
         selector: @selector(postData:)
         userInfo:@"xyz"
         repeats: YES];

- (void)postData:(NSTimer*)timer {
    NSLog(@"userInfo = %@", timer.userInfo);
}
妄想挽回 2024-11-11 13:05:26

当我们阅读您正在使用的方法的文档时,它似乎没有正确调用:

timer = [NSTimer scheduledTimerWithTimeInterval:10.0
target:self
selector:@selector(postData:)
userInfo:nil
repeats:YES];

并且您的 postData 必须具有以下签名:

- (void)postData:(NSTimer*)theTimer

When we read the documentation of the method you are using, it seems it's not correctly called :

timer = [NSTimer scheduledTimerWithTimeInterval:10.0
target:self
selector:@selector(postData:)
userInfo:nil
repeats:YES];

And your postData must have the following signature :

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