当用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)