在生成bundle资源包的时候我们如果使用了xib会出现无法加载的情况
Terminating app due to uncaught exception
'NSInternalInconsistencyException', reason:'Could not load NIB in bundle:
'NSBundle
/Documents/asset-4.bundle> (not yet loaded)' with name 'ZYBannerCell''
这时,我们的处理方法是需要把xib转化成nib,转化方法如下
ibtool --errors --warnings --output-format human-readable-text --compile ZYBannerCell.nib ZYBannerCell.xib
网友评论