I don’t see a reference in the Readme that references a .h file. I don’t know that you need to change the header file for CoronaCards.
Now I’ve not tried this, I’m just speculating, in the ViewController.h, you would do something like:
#import "CoronaCards/CoronaCards.h" @interface ViewController : CoronaViewerController // change View to Viewer here @end
Then in ViewController.mm do:
@implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. CoronaViewer \*view = (CoronaViewer \*)self.view; [view run]; }
Or something like that…
Rob