我很抱歉这么简单的问题,但我已经到处搜索并阅读了纸质入门文档,但仍无法找到解决此问题的方法。
我正在使用paper-onboarding library构建一个简单的iOS应用项目,方法是YT tutorial。我一直收到错误:No such module 'PaperOnboarding'
import UIKit
import PaperOnboarding // <<<ERROR HERE>>>
class OnboardingView: PaperOnboarding {
/*
// Only override draw() if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
override func draw(_ rect: CGRect) {
// Drawing code
}
*/
}
我不确定如何解决这个问题,有人可以对此有所了解吗? Xcode:版本9.3 Cocoapod:版本1.4.0 Paper-onboarding:版本4.0.2
答案 0 :(得分:0)
此错误与库无关。这绝对是您的错误或项目配置的错误。
如何将库添加到项目中?
如果你正在使用CocaPods添加:
Make sure you do pod install or pod update
After that always open the .xcworkspace file in your project and not the .xcodeproj
如果您要打开正确的文件:
Check the POD project and the target for the pod you added and in the build settings, make sure Swift Version matches your project version.
Clean your project and run
Close and re-open XCode
但它可能是其他几件事。但要确保所有配置都正确。
某些Pod要求您使用Podfile中的use frameworks!
语句。