Add white shadow to the text iPhone


/ Published in: Objective C
Save to your folder(s)

Here is how you add a shadow to a UILabel on the iPhone.


Copy this code and paste it in your HTML
  1. lcd_title.text = song.title;
  2.  
  3. //Add white shadow to the text
  4. lcd_title.shadowColor = [UIColor whiteColor];
  5. lcd_title.shadowOffset = CGSizeMake(1.0,1.0);

URL: http://www.espinallab.com

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.