You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi everyone, i am trying to put working this chart on iOS 7.1 but i am failing.
I know that its something that i am missing but i can't find what. For the version iOS 8 i had no difficult to have put it work.
Already try a lot o things, include almost all the files, i had read the issues of this page and from stackoverflow and noting.
I had create again a new empty project and start from the begin just for testing without garbage of the old project.
And even just starting is giving me a problem in giving the error: Cannot find protocol declaration for ‘ChartViewDelegate' i had drag all the swift file and they are in the target.
Quote:
If it's Objective-C based project + iOS 7, set embedded content contains swift code to YES, define modules to YES, and the module name is correct, also make sure Objective-C generated interface header name is correct.
BTW, I cannot download it. The website downloading is too fancy and downloaded nothing in my firefox.
You dont actually need to do those things. You only need to import your applications swift header. Use #import "testeIOS7graficos-Swift.h" instead of #import "Charts.h"
thank you @liuxuan30 and @petester42 for answers...i was trying to write the full bundle "com.training.testeIOS7graficos-Swift.h" that why was not working.
Hi everyone, i am trying to put working this chart on iOS 7.1 but i am failing.
I know that its something that i am missing but i can't find what. For the version iOS 8 i had no difficult to have put it work.
Already try a lot o things, include almost all the files, i had read the issues of this page and from stackoverflow and noting.
I had create again a new empty project and start from the begin just for testing without garbage of the old project.
So i have this in the file viewController
import <UIKit/UIKit.h>
import "Charts.h"
@interface ViewController : UIViewController
@EnD
And this on .m
import "ViewController.h"
@interface ViewController ()
@EnD
@implementation ViewController
[super viewDidLoad];
}
@EnD
And even just starting is giving me a problem in giving the error: Cannot find protocol declaration for ‘ChartViewDelegate' i had drag all the swift file and they are in the target.
Here it is the project http://we.tl/NwPueCqfBi
The text was updated successfully, but these errors were encountered: