-
-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
installing with cocoapods #283
Comments
You may need to make sure that you are using frameworks in cocoa pods. |
I was.. (I am) - gave up and installed via tutorial here: http://www.appcoda.com/ios-charts-api-tutorial/ |
I am having the same issue |
You may want to post an Issue on the Issues page of CocoaPods. Or try to install it manually... |
It looks as if you are using Swift. If you are using Swift 3, you may need consider adding the following to your pod file. |
It worked for me - please try the following in your Podfile source 'https://github.com/CocoaPods/Specs.git' target 'AppName' do |
I've been dealing with the same problem since 2 days ago, with no success so far though! |
Seems like you added all the files to your project? Please open another issue if you haven't figured it out. This is something wrong with your setup and isn't related with this issue |
Following steps worked for me:
|
@TheTiger13 this defeats the point of cocoa pods. After doing |
@petester42 I just took a new sample project and installed |
Hi, I've read the various issues on this topic but haven't found a solution. Closest I came was issue #87 but still didn't see a solution other than "read the instructions" which I swear I did a couple of times.. I apologize.
I simply added to my Podfile: pod 'ios-charts'
then did a pod install / pod update ..
all seems good from a building perspective, but when I try to "import Charts" at the top of my swift file I get a compiler error, "No such module 'Charts'" .. similarly if I remove that and just try to add a BarChartView, e.g. @IBOutlet weak var barChartView: BarChartView! , I get "use of undeclared type BarChartView"
Is there a step I am missing for the cocoapods installation? Tried multiple project cleans, stop and start xcode..
The text was updated successfully, but these errors were encountered: