I implemented necessary files and JotUI.framework in my project.
Now when i try to draw line in jotview, I got error like below
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIDeviceWhiteColor getRGBAComponents:]: unrecognized selector sent to instance 0x170443b70'
Here is my code:
if (!jotView) {
jotView = [[JotView alloc] initWithFrame:self.view.bounds];
jotView.delegate = self;
// jotView.backgroundColor = [UIColor whiteColor];
// [_scrSketch insertSubview:jotView atIndex:0];
[_scrSketch addSubview:jotView];
_scrSketch.minimumZoomScale = 1.0;
_scrSketch.maximumZoomScale = 10.0;
I implemented necessary files and JotUI.framework in my project.
Now when i try to draw line in jotview, I got error like below
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIDeviceWhiteColor getRGBAComponents:]: unrecognized selector sent to instance 0x170443b70'
Here is my code: if (!jotView) { jotView = [[JotView alloc] initWithFrame:self.view.bounds]; jotView.delegate = self; // jotView.backgroundColor = [UIColor whiteColor]; // [_scrSketch insertSubview:jotView atIndex:0]; [_scrSketch addSubview:jotView]; _scrSketch.minimumZoomScale = 1.0; _scrSketch.maximumZoomScale = 10.0;
Any idea ?? Thanks.