Jawbone/JBChartView

JBChartView and Swift

Closed this issue · 2 comments

Hi,

i just wanted to add JBChartView to my Project and installed it via Cocoapods. I already had a bridging header file in my project for fmdb (sqlite class). After installation i added the missing lines to the bridging header:

#import "JBChartView.h"
#import "JBBarChartView.h"
#import "JBLineChartView.h"

i already had #import <UIKit/UIKit.h> in the bridging header file for fmdb. But after compiling the project Xcode complains about all .h files for JBChartView wich can not be found.

bildschirmfoto 2018-07-10 um 20 55 26

What do i need to do here?

Regards

Dirk

zadr commented

You'll want to import with framework search paths using angular brackets, e.g.: <JBChartView/JBChartView.h>

Thank you @zadr that helped (after I removed the "" around the <JBChartView/JBChartView.h>)