Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是目标 C 的新手。我创建了一个启用 ARC 的应用程序并修改了构建设置,例如将警告视为错误 - 是和未使用的参数 - 在构建设置中的 Apple LLVM 编译器 3.0 警告类别中为是。所以在 app Delegate 文件中,UI Application 中的所有方法都显示错误。请看这个附件。
是否可以解决此问题,或者我需要再次修改构建设置,如“未使用的参数 - 否”?
请帮我解决这个问题。
谢谢
关闭将警告视为设置中的错误。这将修复您遇到的编译器错误。
否则,您可以使用说明符一一消除错误__attribute__(unused)。
__attribute__(unused)
看到这个答案