gpt4 book ai didi

ios - NSOperationQueue 泄漏?

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

我正在尝试使用 NSOperationQueue 在后台线程中执行一个方法,如下所示:

NSOperationQueue *queue = [NSOperationQueue new];
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithTarget:self
selector:@selector(method)
object:nil];

[queue addOperation:operation];
[queue release];
[operation release];

问题是,分析器说存在存储到队列中的泄漏。

我该如何解决这个问题?

最佳答案

调用[MyClass new] 与调用[[MyClass alloc] init] 相同,它返回retainCount = 1 的对象。所以,它应该在之后发布。

关于ios - NSOperationQueue 泄漏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8660239/

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