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.
我希望 Xcode 在检测到// FIXME:*我放置在代码中的任意注释标签(*eg.)时中止发布版本。有没有人这样做或类似的事情?我想避免以不完整的状态发布应用程序。
// FIXME:*
您可以使用以下命令,而不是使用注释:
#warning FIXME: this needs to be finished
你可以在后面放任何你想要的东西#warning。当你编译时,编译器会吐出一个编译器警告,不管你放在什么后面#warning。如果您设置项目以便将警告视为错误(我只接受 100% 干净的构建),这将非常有效。
#warning
使用以下内容:
#error Error message here.