Another heads up: ChartsRealm is now in a separate repo. Pods is also now Charts and ChartsRealm, instead of Charts/Core and Charts/Realm
One more heads up: As Swift evolves, if you are not using the latest Swift compiler, you shouldn't check out the master branch. Instead, you should go to the release page and pick up whatever suits you.
Xcode 11 / Swift 5 (master branch)
iOS >= 8.0 (Use as an Embedded Framework)
tvOS >= 9.0
macOS >= 10.11
Okay so there's this beautiful library called MPAndroidChart by Philipp Jahoda which has become very popular amongst Android developers, but there was no decent solution to create charts for iOS.
I've chosen to write it in Swift as it can be highly optimized by the compiler, and can be used in both Swift and ObjC project. The demo project is written in ObjC to demonstrate how it works.
An amazing feature of this library now, for Android, iOS, tvOS and macOS, is the time it saves you when developing for both platforms, as the learning curve is singleton- it happens only once, and the code stays very similar so developers don't have to go around and re-invent the app to produce the same output with a different library. (And that's not even considering the fact that there's not really another good choice out there currently...)
Having trouble running the demo?
ChartsDemo/ChartsDemo.xcodeproj is the demo project for iOS/tvOS
ChartsDemo-OSX/ChartsDemo-OSX.xcodeproj is the demo project for macOS
Make sure you are running a supported version of Xcode.
Usually it is specified here a few lines above.
In most cases it will be the latest Xcode version.
Make sure that your project supports Swift 5.0
Optional: Run carthage checkout in the project folder, to fetch dependencies (i.e testing dependencies).
Go to your target's settings, hit the "+" under the "Embedded Binaries" section, and select the Charts.framework
@import Charts
When using Swift in an ObjC project:
You need to import your Bridging Header. Usually it is "YourProject-Swift.h", so in ChartsDemo it's "ChartsDemo-Swift.h". Do not try to actually include "ChartsDemo-Swift.h" in your project :-)
(Xcode 8.1 and earlier) Under "Build Options", mark "Embedded Content Contains Swift Code"
(Xcode 8.2+) Under "Build Options", mark "Always Embed Swift Standard Libraries"
Note that the Realm framework is not linked with Charts - it is only there for optional bindings. Which means that you need to have the framework in your project, and in a compatible version to whatever is compiled with Charts. We will do our best to always compile against the latest version.
You'll need to add ChartsRealm as a dependency too.
请发表评论