Is it possible to add a shadow to the text in a UITextField?
|
|
||||
|
|
|
I don't think you get built-in support for text shadows here, the way you do with Two ideas: (1) [Moderately tricky to code.] Add a second (2) [Even more fun to code.] Subclass |
|||||||||
|
|
As of 3.2, you can use the CALayer shadow properties.
|
|||||||||||||||||
|
|
I have a slightly different problem - I want a blurred shadow on a UILabel. Luckily, the solution to this turned out to be number (2) from Tyler Here's my code :
This is in a class that extends from UILabel and draws the text with a shadow down and to the right 4px, the shadow is grey at 80% opacity and is sightly blurred. I think that Tyler's solution number 2 is a little better for performance than Tyler's number 1 - you're only dealing with one UILabel in the view and, assuming that you're not redrawing every frame, it's not a hit in rendering performance over a normal UILabel. PS This code borrowed heavily from the Quartz 2D documentation |
|||||||||||
|
|
Although the method of applying the shadow directly to the The approach that should be used is with
However textView.attributedText is for iOS6. If you must support lower versions, you could use the following approach. (Dont forget to add
|
|||
|
|