我使用Cocoapods在Xcode的全新iOS项目中安装以下软件包。
https://github.com/jpsim/JPSVolumeButtonHandler
将pod 'JPSVolumeButtonHandler'
添加到Podfile
并运行pod install
后,我关闭现有的Xcode项目并打开新的xcworkspace文件
如果我在#import 'JPSVolumeButtonHandler.h'
文件中尝试my ViewController.h
,我会收到错误:
JPSVolumeButtonHandler file not found
我知道这有时可以通过构建项目来解决,但即使这样做,我仍然会得到同样的错误。我失踪了什么?
答案 0 :(得分:0)
刚想出来了。在过去使用的Cocoapod库中,有一个包含在cocoapod库目录之外的全局文件。
在这种情况下,我必须提供从Pod Root
到我需要的头文件的完整路径,该文件位于pods / JPSVolumeButtonHandler / JPSVolumeButtonHandler.h
所以我的import语句现在看起来像:
#import "JPSVolumeButtonHandler/JPSVolumeButtonHandler.h"