0

I am developing an application for iPhone.I need to give some labels an emboss effect .Is it possible to do that?

Thanks in advance..

MobX
  • 2,640
  • 7
  • 33
  • 54

2 Answers2

4

From: Adding Emboss to a UILabel in a navigationItem.titleView (as seen with navigationItem.title)

[myLabel setShadowColor:[UIColor darkGrayColor]];
[myLabel setShadowOffset:CGSizeMake(0, -1)];
Community
  • 1
  • 1
Jeffrey Berthiaume
  • 4,054
  • 3
  • 35
  • 45
0

I would also try to set alpha value to 0.8 to emphasise the effect

Fabiano Francesconi
  • 1,769
  • 1
  • 19
  • 35