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 7 中的注释块?
当我尝试新代码时,我喜欢保留不同版本的“解决方案”,直到我决定哪个是我最喜欢的并删除被拒绝的材料。
完成此操作后,您将能够折叠注释以及代码块。
我希望这有帮助!
.
添加图片参考
代码折叠块注释在 Xcode 7 - 7.2.1 中的 Swift 文件中不起作用。
但是,您可以通过使用空的闭包来包围评论来破解它。这也适用于多行注释。
_ = { /* Comment myCommented.code */ }
绝对是一个 hack,但可以为您节省大量滚动。