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..
From: Adding Emboss to a UILabel in a navigationItem.titleView (as seen with navigationItem.title)
[myLabel setShadowColor:[UIColor darkGrayColor]];
[myLabel setShadowOffset:CGSizeMake(0, -1)];
I would also try to set alpha value to 0.8 to emphasise the effect