gpt4 book ai didi

ios - 如何在 NSInvocationOpreation 中传递对象

转载 作者:行者123 更新时间:2023-11-28 21:46:59 24 4
gpt4 key购买 nike

我创建了一个 NSInvocationOpertion 对象,如下所示

NSString *myString = @"Jai Hanuman";
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(taskMethod) object:myString];
NSOperationQueue *operatioQueue = [[NSOperationQueue alloc] init];
[operatioQueue addOperation:operation];

谁能告诉我如何访问 taskMethod 中的 myString 对象?可能吗?

- (void)taskMethod{
NSLog(@"Oh! Invocation's working buck");
}

最佳答案

你可以试试这个:

将您的方法更改为:

- (void)taskMethod:(NSString *) message{
NSLog(@"Oh! Invocation's working buck");
message=//your string object;
}

NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self selector:@selector(taskMethod:) object:myString];

关于ios - 如何在 NSInvocationOpreation 中传递对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29730304/

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