1.首先新建一个 Header 文件
2.通过cocoaPods 添加想要使用的第三方例如
Podfile中添加如下代码
3.在创建的Header 中引用添加的第三方
#ifndef My_Bridging_Header_h
#define My_Bridging_Header_h
#import "UIImageView+WebCache.h"
#import "AFNetworking.h"
#import "SVProgressHUD.h"
#import "SDCycleScrollView.h"
#endif /* My_Bridging_Header_h */
-
最后在TARGETS 中的Build Settings 中搜索 bird 找到
双击将我们创建的Header 拖进去 就OK了