關(guān)于swift橋接頭文件 import <xx/xx.h> file not found的問題
我想要在swift項(xiàng)目中引入 UITableView+FDTemplateLayoutCell
想當(dāng)然的引入
#import <UITableView-FDTemplateLayoutCell/UITableView+FDTemplateLayoutCell.h>
結(jié)果提示 file not found
解決方法 :
點(diǎn)擊 pods -> targets -> build setting -> 搜索'packaging' ->找到 produce name 發(fā)現(xiàn)是 UITableView_FDTemplateLayoutCell
橋接頭文件改為
#import <UITableView_FDTemplateLayoutCell/UITableView+FDTemplateLayoutCell.h>
即可