升级cocoapods后,工程抱错误
/Users/dolphinquan/Desktop/Project/o2o_ios_dealer/dealer/Lib/dealer-Bridging-Header.h:7:9: 'MJRefresh/MJRefresh.h' file not found
Failed to import bridging header '/Users/dolphinquan/Desktop/Project/o2o_ios_dealer/dealer/Lib/dealer-Bridging-Header.h'
其实是因为cocoapods1.0.0 下是默认使用
use_frameworks!
target 'YourApp' do
end
格式跟旧版的不一样,所以你需要线clean一下工程,然后 pod install,在Bridging-Header下删除所有报错的那些库引导就OK了,如 'MJRefresh/MJRefresh.h' file not found 就直接把#import <MJRefresh/MJRefresh.h>删除就好了。