iOS Category to turn color hex string RBG to UIColor
#Little Story for months every time I want to convert a hex color from photoshop into UIColor.. I should go to some online converter to make this done.. no more of this headache for me at least , the good developer should always be a lazy one.
#Install
Just drag the folder named MHHexColoring to your project and add #import "UIColor+HexString.h"
to your header
#usage whenever you want to convert a hex color from your photoshop into UIColor .. just call
[UIColor colorWithHexString:@"#ffffff"];
voila.
#Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request