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 UILabel
.
Two ideas:
(1) [Moderately tricky to code.] Add a second UITextField
behind the original, at a very small offset (maybe by (0.2,0.8)? ). You can listen to every text change key-by-key by implementing the textField:shouldChangeCharactersInRange:replacementString:
method in the UITextFieldDelegate protocol. Using that, you can update the lower text simultaneously. You could also make the lower text (the shadow text) gray, and even slightly blurry using the fact that fractionally-offset text rects appear blurry. Added: Oh yea, don't forget to set the top text field's background color to [UIColor clearColor]
if you go with this idea.
(2) [Even more fun to code.] Subclass UITextField
and override the drawRect:
method. I haven't done this before, so I'll mention up front that this depends on this being the designated drawing method, and it may turn out that you have to override another drawing function, such as drawTextInRect:, which is specific to UITextField
. Now set up the drawing context to draw shadows via the CGContextSetShadow functions, and call [super drawRect:rect];
. Hopefully that works -- in case the original UITextField
code clears the drawing context's shadow parameters, that idea is hosed, and you'll have to write the whole drawing code yourself, which I anti-recommend because of all the extras that come with UITextFields
like copy-and-paste and kanji input in Japanese.