Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm playing around with this ACEDrawingView code: https://github.com/acerbetti/ACEDrawingView

I'm trying to set the pen color using RGB values, but it crashes every time I try to draw with the pen set to a custom RGB value. However, it works completely fine when it's set to any of the default UIColor settings.

I'm pretty sure I'm setting the UIColor up correctly, I've done it a bunch of other times with no problem, using code something like:

[UIColor colorWithRed:255.0/255.0 green:165.0/255.0 blue:239.0/255.0 alpha:1.0]

No idea what's going on, I'm a total noob to iOS programming.

Thanks in advance for any help!

share|improve this question

1 Answer

In ACEDrawingView.h

change @property (nonatomic, assign) UIColor *lineColor;

to

@property (nonatomic, strong) UIColor *lineColor;

Hope this helps

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.