我已将 MBProgressHUD Cocoapod添加到我的项目中。这是我的 Podfile :
# Uncomment this line to define a global platform for your project
# platform :ios, '8.0'
source 'https://github.com/CocoaPods/Specs.git'
target 'RRiOSApp' do
pod 'MBProgressHUD', '~> 0.8'
end
target 'RRiOSAppTests' do
end
我现在将我的代码打开为Xcode工作区而不是项目。我运行pod install
并获得正确的控制台输出:
Analyzing dependencies
Downloading dependencies
Installing MBProgressHUD (0.9)
Generating Pods project
Integrating client project
我可以看到我的 MBProgressHUD.h 文件存在于 Pods >下的我的Pods目标中。 MBProgressHUD > MBProgressHUD.h
问题在于,当我将#import MBProgressHUD.h
添加到文件中时,我在该行读取错误"找不到MBProgressHUD.h文件"。
答案 0 :(得分:4)
我在@ Ben-G提供了答案:iOS - Build fails with CocoaPods cannot find header files
除了App目标之外,我还没有为我的测试目标设置Pod配置。