Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8369727
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T13:43:28+00:00 2026-06-09T13:43:28+00:00

I found a category for UIImage for replacing color here The problem is that

  • 0

I found a category for UIImage for replacing color here

The problem is that the method signature receives an unsigned integer color code:

- (UIImage *)imageByRemovingColorsWithMinColor:(uint)minColor maxColor:(uint)maxColor

How do I get proper unsigned integer value from a UIColor?

I actually want to replace black color with purple.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T13:43:30+00:00Added an answer on June 9, 2026 at 1:43 pm

    If you had looked at the sources, you would have found out that they use this unsigned integer value as a hexadecimal color code, where

    colorcode = ((unsigned)(red * 255) << 16) + ((unsigned)(green * 255) << 8) + ((unsigned)(blue * 255) << 0)
    

    So you can get such a hexadecimal value from an UIColor object using someting like this:

    @implementation UIColor (Hex)
    
    - (NSUInteger)colorCode
    {
        float red, green, blue;
        if ([self getRed:&red green:&green blue:&blue alpha:NULL])
        {
            NSUInteger redInt = (NSUInteger)(red * 255 + 0.5);
            NSUInteger greenInt = (NSUInteger)(green * 255 + 0.5);
            NSUInteger blueInt = (NSUInteger)(blue * 255 + 0.5);
    
            return (redInt << 16) | (greenInt << 8) | blueInt;
        }
    
        return 0;
    }
    
    @end
    

    And then use it like:

    NSUInteger hexPurple = [[UIColor purpleColor] colorCode];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying this code (found in an answer here on SO) in a category
I'm playing with improving performance during saving category and I found that once category
found this little code snippet that seems to do what i want, but im
Hi I found problem with EF. Here is my Model I loaded asset: POCO.Asset
I found a category for NSAttributedString they returns the height of the rectangle that
UPDATE : I have found the problem that my DP solution didn't handle bonus
Code can be found here: http://www.myhorizon.ca/client_central/sortable_test.php Hello folks of Stackoverflow, I have a list
I found here and here similar issues, but the problem is slightly different. In
On the iReport documentation I found these XPath queries: /addressbook/category@name /addressbook/category/person@id /addressbook/category/person+LASTNAME /addressbook/category/person+FIRSTNAME /addressbook/category/person+hobbies*hobby
Found this while reading the Neo4j manual, specifically here , I found the sentence:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.