I just added the canvas pod (through cocoapods) and I can see the files in my workspace just fine, and I was able to "import Canvas" into my ViewController.swift. But I am getting a semantic build time error that the file CSAnimationView.m is possibly missing a method [super awakeFromNib][errorscreenshot]1
/*
* This file is part of the Canvas package.
* (c) Canvas <usecanvas@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
#import "CSAnimationView.h" @implementation CSAnimationView
- (void)awakeFromNib {
if (self.type && self.duration && ! self.pauseAnimationOnAwake) {[self startCanvasAnimation];
}
}
- (void)startCanvasAnimation {
Class <CSAnimation> class = [CSAnimationclassForAnimationType:self.type];
[class performAnimationOnView:self duration:self.durationdelay:self.delay];
[super startCanvasAnimation];
}
@end