views:

1222

answers:

2
+1  A: 

The applicatin seems to have the glow effect only for numbers. That's 10 digits plus a few symbols (".", "+", "-", etc). An easy way to achieve this is to have a different image for each digit and symbol, and create a subclass of UIView that can draw numbers in its drawDect method.

Marco Mustapic
+1  A: 

In my answer here, I describe a way to apply a glow effect to any text or vector elements drawn within a UIView or CALayer.

Brad Larson