我正在使用 CocaPods 将其添加AFNetowrking
到OHAttributedLabel
我的项目中。我安装了两个库。AFNetworking
在我的项目中导入就好了。但OHAttributedLabel
不是。我不知道为什么!
播客文件
platform :ios, '6.0'
pod 'AFNetworking'
pod 'OHAttributedLabel'
安装两个库后,当我导入
#import "AFHTTPClient.h"
#import "AFJSONRequestOperation.h"
#import "UIImageView+AFNetworking.h"
我没有收到任何错误,一切正常
但是当我尝试导入时
#import <OHAttributedLabel/OHAttributedLabel.h>
#import <OHAttributedLabel/NSAttributedString+Attributes.h>
#import <OHAttributedLabel/OHASBasicMarkupParser.h>
我正进入(状态
'OHAttributedLabel/OHAttributedLabel.h' file not found
错误
吊舱安装输出
Resolving dependencies of `./Podfile'
Updating spec repositories
Cocoapods 0.17.0.rc7 is available.
Resolving dependencies for target `default' (iOS 6.0)
Downloading dependencies
Using AFNetworking (1.1.0)
Installing OHAttributedLabel (3.4.1)
Generating support files
建议说
确保您的项目正在使用 Pods.xcconfig。要检查此项,请选择您的项目文件,然后再次在第二个窗格中选择它并在第三个窗格中打开“信息”部分。在配置下,您应该为需要安装 pod 的每个配置选择 Pods.xcconfig。
我不确定在哪里添加这个。这就是我的配置的样子
编辑
复制 pods.xcconfig 后