gpt4 book ai didi

ios - 如何从调用方法的 NSInvocationOperation 获取对象?

转载 作者:行者123 更新时间:2023-11-29 02:54:23 26 4
gpt4 key购买 nike

我已经在我的项目中编写了代码

[NSInvocationOperation alloc]
initWithTarget:self
selector:@selector(loadImage)
object:ob

在方法中

- (void)loadImage {

}

最佳答案

这可能有帮助;

// Your NSInvocationOperation definition 
[NSInvocationOperation alloc] initWithTarget:self selector:@selector(loadImage:) object:ob];

// Add an argument, this one is called 'sender'
- (void)loadImage:(id)sender { // 'sender' equals your object 'ob' from above
// Do whatever you want to
}

有关 NSInvocationOperation 的进一步引用/信息: NSInvocationOperation Class Reference

关于ios - 如何从调用方法的 NSInvocationOperation 获取对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24104272/

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