关于表达式 @autoreleasepool 的失败

发布于 2024-12-12 12:44:08 字数 511 浏览 0 评论 0原文

我从developer.apple.com下载了一个名为 SimpleGestureRecognizer 和 main.m 中的程序发送失败,因为程序不知道表达式 @auoreleasepool

失败是:程序中出现意外的“@”。 我在网上搜索了一下,是否有人遇到同样的问题,但没有人遇到同样的问题。

你知道为什么这个程序不知道@autoreleasepool这个表达式吗? 我的 Xcode 版本是 3.2.6

感谢您在转发中的帮助和假设

I downloaded a sample code from developer.apple.com called SimpleGestureRecognizer and in the main.m the program send a fail, because the program does not know the expression @auoreleasepool

The fail is: Unexpected '@' in program.
I searched on the internet, if there is a same problem happens to someone, but there was nobody having the same problem.

Do you know, why this program does not know the expression @autoreleasepool?
My Xcode version is 3.2.6

Thank you for your help and presumptions in forward

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

执手闯天涯 2024-12-19 12:44:08

@autoreleasepool 是在 LLVM 3.0 中引入的,该编译器可在 Xcode 中使用4.2.由于您使用的是 Xcode 3.2.6,因此您有 LLVM 1.6 和 GCC,它们都无法识别该指令。

您可以更改代码以使用 NSAutoreleasePool 而不是 @autoreleasepool,以便使用 Xcode 3.2.6 进行构建。例如,将: 替换

@autoreleasepool {
    …
}

为:

NSAutoreleasePool *pool = [NSAutoreleasePool new];
…
[pool drain];

@autoreleasepool was introduced in LLVM 3.0, the compiler available in Xcode 4.2. Since you’re using Xcode 3.2.6, you have LLVM 1.6 and GCC, neither of which recognises that directive.

You can change the code to use NSAutoreleasePool instead of @autoreleasepool so that it builds with Xcode 3.2.6. For example, replace:

@autoreleasepool {
    …
}

with:

NSAutoreleasePool *pool = [NSAutoreleasePool new];
…
[pool drain];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文