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.
1 つのアプリケーション内で .xib ファイルを別の .xib ファイルのテンプレートとして再利用する方法。テンプレートのような xib (ロゴ付きの xib など) が 1 つ必要で、それを別の xib ファイルのサブビューのようにインポートします。
どうすればいいですか?
インポートするxibに新しいビューを定義し、クラスファイルを作成します。
@interface MyView : UIView
オブジェクトインスペクターで、MyViewをxibビューのクラスとして設定します。他のxibから、空のビューを配置してから、そのクラスを次のように変更します。MyView
MyView