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.
我有一个包含 200 个左右类文件的 Xcode 项目。所有这些类都需要平衡 addObserver/removeObserver 或存在崩溃的风险,因此我试图找到一种方法来显示问题文件,而无需手动扫描每个文件。
从另一篇文章中尝试了这个正则表达式......
^(?!.[\s\S]*removeObserver).[\s\S]*addObserver.*$
...但它正在返回包含 removeObserver 的类。