-
Notifications
You must be signed in to change notification settings - Fork 1.3k
v2 questions #48
Comments
|
I think 1 was in one of the categories named Private. Tests incoming also. I'll start with your code as a baseline for now. |
if (abs(r - g < 0.03f && fabs(r - b) < 0.03f)) {
|
Where is that line located? |
Oh right. |
|
|
|
|
@bre7 Seeing how much you've helped out in the past few weeks, I've added you as a collaborator to make things easier! Thanks for all your help 💯 😃 |
😉😁 ty. I've enjoyed working with this framework quite a lot I usually don't merge anything (unless it's minor) until the owner has a chance to check it out. |
No worries! I trust your input. 👍 |
Shouldn't |
@jlama At first glance it looks like your suggestion should be used, but apparently Xcode throws the following warning if we do that:
That is why we're using |
Xcode throws that warning because the whole expression inside fabs() always evaluates to a boolean, due to the parentheses position, and does not make any sense. What I wanted to point out is the missing closing ) after abs(r - g |
Ahh I see. Thanks @jlama. It seems that as of 2.0.4 it's been fixed. Appreciate it though. |
Oh wow you're right. It should be fixed in 2.0.5. |
#pragma mark - Class Methods
sectionUIViewController+Chameleon.h
the methodflatify()
is empty (Line 97)findColorsOfImage(...)
, won't the NSArray and NSCountedSet have the same colors ?The text was updated successfully, but these errors were encountered: