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.
我只是想知道是否有任何方法可以以 UILabel、UITextField 或 UITextView 的形式搜索某些特定文本(仅适用于那些没有创建 IBOutlets 并且文本直接在 xib 本身中给出的文本)。对于普通文本,这些总是可以在所有 .h、.m 文件中搜索,但不知道如何在 xibs 中搜索。我们是否必须手动打开每个 xib?
在终端上运行以下命令
grep -i -r --include=*.xib "text you want to search" /path of your project
我们无法使用 xcode 搜索 .xib 文件中的某些文本。但是我们可以在终端中使用上述命令搜索 .xib 文件中的文本。