Objective c 具有cocoapods obj-c依赖性的swift项目

Objective c 具有cocoapods obj-c依赖性的swift项目,objective-c,swift,cocoapods,match,Objective C,Swift,Cocoapods,Match,我正在制作一个简单的swift应用程序,它链接了一个obj-c cocoapod依赖项SFRoundProgressCounterView。我的Podfile包含use\u框架。在安装POD并构建项目后,我遇到2个错误: SFCounterLabel.h:12:9:未找到“tttatAttributedLabel.h”文件 无法生成Objective-C模块“SFRoundProgressCounterView” 我检查了SFCounterLabel.h,它是SFRoundProgressCou

我正在制作一个简单的swift应用程序,它链接了一个obj-c cocoapod依赖项SFRoundProgressCounterView。我的Podfile包含
use\u框架。在安装POD并构建项目后,我遇到2个错误:

SFCounterLabel.h:12:9:未找到“tttatAttributedLabel.h”文件

无法生成Objective-C模块“SFRoundProgressCounterView”

我检查了SFCounterLabel.h,它是SFRoundProgressCounterView导入TTtatAttributedLabel的一部分:

#import "TTTAttributedLabel.h"
我尝试将MyProjectName桥接头.h用于 #导入“tttatAttributedLabel.h” 但没有理由

我的Cocoapods版本是0.39.0

如何将SFRoundProgressCounterView正确链接到我的swift项目?

在SFRoundProgressCounterView中,似乎需要使用支持框架的导入语法
#导入
@import tttatAttributedLabel.tttatAttributedLabel

在SFRoundProgressCounterView中,似乎需要使用支持框架的导入语法
#导入
@import tttatAttributedLabel.tttatAttributedLabel