hey, I want to be able to have a gradient fill on the text in a UILabel I know about CGGradient but i dont know how i would use it on a UILabel's text
i found this on google but i cant manage to get it to work
|
hey, I want to be able to have a gradient fill on the text in a UILabel I know about CGGradient but i dont know how i would use it on a UILabel's text i found this on google but i cant manage to get it to work |
|||||||||||
|
|
The example you provide relies on private text drawing functions that you don't have access to on the iPhone. If you still want to draw the gradient for your text color in code, it can be done by subclassing UILabel and overriding -drawRect: to have code like the following within it:
One shortcoming of this approach is that the Core Graphics functions I use don't handle Unicode text properly. What the code does is it flips the drawing context vertically (the iPhone inverts the normal Quartz coordinate system on for the Y axis), sets the text drawing mode to intersect the drawn text with the clipping path, clips the area to draw to the text, and then draws a gradient. The gradient will only fill the text, not the background. I tried using NSString's -drawAtPoint: method for this, which does support Unicode, but all the characters ran on top of one another when I switched the text mode to kCGTextClip. |
|||||||||||
|
|
I was looking for a solution and DotSlashSlash has the answer hidden in one of the comments! For the sake of completeness, the answer and the simplest solution is:
|
|||||||||||||
|
|
(Skip to bottom for full class source code) Really useful answers by both Brad Larson and Bach. The second worked for me but it requires an image to be present in advance. I wanted something more dynamic so I combined both solutions into one:
The result works and in the screenshot below you can see some Greek characters rendered fine too. (I have also added a stroke and a shadow on top of the gradient)
Here's the custom init method of my label along with the method that renders a gradient on a UIImage (part of the code for that functionality I got from a blog post I can not find now to reference it):
I'll try to complete that UILabel subclass and post it. EDIT: The class is done and it's on my GitHub repository. Read about it here! |
||||
|
|
|
You could sub-class out UILable and do the draw method yourself. That would probably be the more difficult approach, there might be an easier way. |
|||||
|