Xcode xib module的作用 - 找不到xib的一种情况

如果不小心选择了这个,则找不到xib,使应用崩溃。

在这里插入图片描述

作用:

  • 1 当需要使用的自定义类嵌入在.framework文件中的时,在xib中,需要选择该自定义类的位置

    • 比如您已经添加了一个cocoapod库,它为您提供了一个自定义的UIView子类,并且您希望将其添加到您的故事板中,因此,您必须将该库“导入”到IB,然后选择自定义视图
  • 2 可以视为设置IB的“导入库”

参考

what is the purpose of module in IOS interface builder?
When you need to use a custom class that its source file is embedded in .framework file for example.
let’s say you’ve added a cocoapod library that gives you a custom UIView subclass and you want to add it inside your storyboard. So you will have to “import” that library to IB and then select the custom view.
You can think of it as the “import Library” line for the IB.

当需要使用的自定义类嵌入在.framework文件中的时,比如您已经添加了一个cocoapod库,它为您提供了一个自定义的UIView子类,并且您希望将其添加到您的故事板中。因此,您必须将该库“导入”到IB,然后选择自定义视图。
您可以将其视为IB的“导入库”行。

你可能感兴趣的:(ios错误)