打包sdk上传Cocoapods包含xib等资源文件

//podspace文件
s.resource_bundles = {
    'SQCustomAlertView' => ['*.{xib}']
  }
//引用
    public override func loadView() {
        Bundle(for: type(of: self)).loadNibNamed("SQCustomAlertView.bundle/WorkbenchViewController", owner: self, options: nil)
    }

 

 

参考文章:https://www.jianshu.com/p/75e19c92df50

                   https://www.jianshu.com/p/4188b6447d56

                   https://www.cnblogs.com/yiqiedejuanlian/p/3698788.html

pod repo update
或
pod cache clean --all
rm -rf ~/Library/Caches/CocoaPods
pod repo update

你可能感兴趣的:(ios)