1.要整個項目的xib全部放到一個bundle文件中
?2.用腳本把所有的xib編譯成nib ,終端CD進(jìn)入到項目中的目錄赐纱,執(zhí)行以下腳本玄窝。find . -type f -name *.xib找到目錄下所有的.XIB文件定義為變量f, for do 循環(huán)遍歷. 定義fileWPath變量匹配出f文件路徑“.”之前的。fileName是匹配最后一個“/”之后的字符串组砚。
for f in `find . -type f -name *.xib`; do fileWPath=${f%.*}; fileName=${fileWPath##*/}; ibtool --errors --warnings --output-format human-readable-text --compile /Users/cloud_hu/Desktop/Time/nibCollection/${fileName}.nib ${fileWPath}.xib; done
3. 再在項目里替換所有使用XIB創(chuàng)建的view 的alloc init 方法替換成如XLHTestViewController類使用了XIB文件
[[XLHTestViewController alloc] initWithNibName:@"XLHTestViewController" bundle:[NSBundle bundleForClass:[XLHTestViewController class]]];
4.使用SDK庫的項目需要把這個文件添加到自己的app目錄中。
注意:另外在xib中使用bundle目錄下的圖片時 圖片會變形。要在引用圖片時娶靡,圖片名字拼接上 bundle名稱+圖片名字。