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.
如何在一个应用程序中将 .xib 文件作为模板重新使用到另一个 .xib 文件。我想要一个类似于模板的 xib(例如带有徽标的 xib),我将像在另一个 xib 文件上的子视图一样导入它。
我该怎么做?
在要导入的 xib 中定义一个新视图,并创建一个类文件:
@interface MyView : UIView
在对象检查器中将 MyView 设置为 xib 视图的类。从另一个xib,放置一个空视图,然后将其类更改为MyView
MyView