gpt4 book ai didi

objective-c - 将参数传递给由 NSTimer 调用的方法

转载 作者:IT老高 更新时间:2023-10-28 11:28:38 25 4
gpt4 key购买 nike

如何将参数传递给 NSTimer 调用的方法?我的计时器如下所示:

[NSTimer scheduledTimerWithTimeInterval:4 target:self selector:@selector(updateBusLocation) userInfo:nil repeats:YES];

并且我希望能够将字符串传递给方法 updateBusLocation。另外,应该在哪里定义方法 updateBusLocation?在我创建计时器的同一个 .m 文件中?

编辑:

其实我还是有问题。我收到错误消息:

由于未捕获的异常“NSInvalidArgumentException”而终止应用程序,原因:“* -[MapKitDisplayViewController updateBusLocation]:无法识别的选择器发送到实例 0x4623600”

这是我的代码:

- (IBAction) showBus {

//do something

[NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(updateBusLocation) userInfo:txtFieldData repeats:YES];
[txtFieldData release];
}


- (void) updateBusLocation:(NSTimer*)theTimer
{
NSLog(@"timer method was called");
NSString *txtFieldData = [[NSString alloc] initWithString:(NSString*)[theTimer userInfo]];
if(txtFieldData == busNum.text) {
//do something else
}
}

编辑#2:没关系,您的示例代码可以正常工作,感谢您的帮助。

最佳答案

您需要在目标中定义方法。由于您将目标设置为“ self ”,那么是的,同一个对象需要实现该方法。但是您可以将目标设置为您想要的任何其他内容。

userInfo 是一个指针,您可以将其设置为您喜欢的任何对象(或集合),并在计时器触发时将其传递给目标选择器。

希望对您有所帮助。

编辑:...简单示例:

设置计时器:

    NSTimer* timer = [NSTimer scheduledTimerWithTimeInterval:2.0 
target:self
selector:@selector(handleTimer:)
userInfo:@"someString" repeats:NO];

并在同一个类中实现处理程序(假设您将目标设置为“ self ”):

- (void)handleTimer:(NSTimer*)theTimer {

NSLog (@"Got the string: %@", (NSString*)[theTimer userInfo]);

}

关于objective-c - 将参数传递给由 NSTimer 调用的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4011297/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com