tags:

views:

102

answers:

1

Hi, 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..

+1  A: 

From: http://stackoverflow.com/questions/753822/adding-emboss-to-a-uilabel-in-a-navigationitem-titleview-as-seen-with-navigation

[myLabel setShadowColor:[UIColor darkGrayColor]];
[myLabel setShadowOffset:CGSizeMake(0, -1)];
Jeffrey Berthiaume