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!