-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setSelectionColor Issues #12
Comments
Hi, |
self.colorPicker.selectionColor = [UIColor blackColor]; //selects green it still exists and it fails on colors which are not displayed in color picker circle... it selects only those colors which come under the present brightness.... |
So, is there any solutions to these problem?
|
I'm not sure that @kostassite's solution actually fixes the underlying problem. I'll see if I can look at this a little more closely soon. Feel free to try his branch and let us know what you find! |
I think this issue has now been fixed in #17. |
The implementation for setSelectionColor seems hit-or-miss. For instance:
self.colorPicker.selectionColor = [UIColor blueColor]; //works
self.colorPicker.selectionColor = [UIColor yellowColor]; //works
self.colorPicker.selectionColor = [UIColor blackColor]; //selects green
self.colorPicker.selectionColor = [UIColor redColor]; //crashes the app
The text was updated successfully, but these errors were encountered: