gpt4 book ai didi

iphone - 为什么我会看到有关 NSAutoreleasePool 不可用的警告消息?

转载 作者:可可西里 更新时间:2023-11-01 06:19:23 24 4
gpt4 key购买 nike

知道为什么我会收到这些消息:

NSAutoreleasePool is unavailable: not available in automatic reference counting mode

ARC forbids explicit message send of 'release'

在这段代码中:

#import <UIKit/UIKit.h>

int main(int argc, char *argv[]) {

NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}

最佳答案

这是因为您在编译时启用了自动引用计数。您需要对 ARC 使用不同的结构:

@autoreleasepool {
// Your code
}

另一种选择是 turn off ARC for a specific file .

关于iphone - 为什么我会看到有关 NSAutoreleasePool 不可用的警告消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8863758/

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