i have a method i got colorWithHex, that lets me send a string like ffaa29 (hex) and get a UIColor. The method works. if i do
self._mainConsole.textColor = [self colorWithHexString: choice];
I can set the color. But the problem is i want to store the color. For example if they enter an invalid color i'd want to return the current color.
When i do this it doesn't work.
self.foregroundColor =[self colorWithHexString: choice];
self._mainConsole.textColor = self.foregroundColor;
Instead it goes black which to me sounds like its going to 000000. Now in my test ipad it works in one spot as above but not another. On a testers ipad 1 the second method doesnt work at all. What am i missing? could there be a memory issue?
Mike
UIColorobject and store it in there. For example, you could have aUIColor *myColor;in your interface and then just gomyColor = [self colorWithHexString:...]when you want to store it. (Assuming you're using ARC; if not you'd gomyColor = [[self colorWithHexString:...] retain]) – Anshu Chimala Jul 22 '12 at 7:27