我正在创建一个简单的swift应用程序,它链接一个obj-c cocoapod依赖项SFRoundProgressCounterView。我的Podfile包含use_frameworks!
。安装pod并构建项目后,我得到2个错误:
SFCounterLabel.h:12:9:找不到'TTTAttributedLabel.h'文件
无法构建Objective-C模块'SFRoundProgressCounterView'
我检查了SFCounterLabel.h,它是SFRoundProgressCounterView的一部分导入TTTAttributedLabel:
#import "TTTAttributedLabel.h"
我尝试使用MyProjectName-Bridging-Header.h #import“TTTAttributedLabel.h” 但没有理由。
我的Cocoapods版本是0.39.0。
如何正确地将SFRoundProgressCounterView链接到我的swift项目?
答案 0 :(得分:3)
看起来像SFCounterLabel.h SFRoundProgressCounterView需要使用支持框架的导入语法。 #import <TTTAttributedLabel/TTTattributedLabel.h>
或@import TTTAttributedLabel.TTTAttributedLabel;