Could not load NIB in bundle: 'NSBundle

当用cocoapod创建一个组件时,在加载xib或者nib的时候总是报“Could not load NIB in bundle: ‘NSBundle、、、”错误

解决方法:

1、在AmafirePackage.podspec文件中配置 s.resource = ‘Pod/Assets’

2,对于xib加载时注册的时候要进行指向,如:

 let bundle = Bundle(identifier: “org.cocoapods.AmafirePackage”)    tableView.register(UINib(nibName: “normalViewCell”, bundle: nil), forCellReuseIdentifier: cellID)

    原文作者:杏子_2fd0
    原文地址: https://www.jianshu.com/p/eb3e833c9205
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞