7

I'd like to achieve the glow effect on what I believe are UILabels (or maybe a custom control?) in this application called convert. I think the app looks pretty neat and I'm trying to achieve a similar effect for my own application

Any help?

Best regards
david

alt text http://www.davidhomes.net/convert.png

vikingosegundo
  • 52,040
  • 14
  • 137
  • 178
David Homes
  • 2,725
  • 8
  • 33
  • 53

2 Answers2

8

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.

Community
  • 1
  • 1
Brad Larson
  • 170,088
  • 45
  • 397
  • 571
  • Brad, please don't go 100% moderator on us! Answers like this make Stack Overflow for Objective-C users. +1 for the link, thanks. – Dan Rosenstark Apr 09 '12 at 01:05
2

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
  • 3,879
  • 1
  • 21
  • 20