Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know soft shadows are not supported by the UILabel out of the box, on the iPhone. So what would be the best way to implement my own one?

EDIT:

Obviously I will subclass the UILabel and draw in the -drawRect: My question is, how do I get the contents of the label as graphics and draw around them, blur them etc...

EDIT 2:

I returned to this question about a year later. In the meantime I've built a class that allows you to easily add soft shadow to a label and tweak it's radius etc and also to draw gradients on the text itself. You can find it on GitHub: https://github.com/doukasd/iOS-Components/tree/master/Views

share|improve this question
how to implement this is Base SDK4.0 ? – Apple May 4 '12 at 14:22

9 Answers

up vote 10 down vote accepted

This answer to this similar question provides code for drawing a blurred shadow behind a UILabel. The author uses CGContextSetShadow() to generate the shadow for the drawn text.

share|improve this answer
That's great and it works as advertised! Thanks. But do you have an idea how I can make that shadow more intense? Since it part of the context, I can't draw it more than once, which would do the trick. – Dimitris Nov 10 '09 at 19:02
1  
You could change the color to be black with a 100% opacity (in his example, it's only 80%), as well as change the shadow radius within the CGContextSetShadow() call. You might also try shifting the offset from the 4,-4 position that he's set. – Brad Larson Nov 10 '09 at 19:06
Yes I have tried 100% opacity etc. And regarding the size, the larger you set it to be, the less visible the shadow is... I am looking for something similar to the Shadow Effect in Flash, which you can set to more than 100%. – Dimitris Nov 10 '09 at 19:12
how to implement this is Base SDK4.0 ? – Apple May 4 '12 at 14:22
@Apple - What's wrong with the code there? Everything in the linked answer still works today on current iOS versions. – Brad Larson May 4 '12 at 15:36
show 1 more comment

As of 3.2 there is direct support for shadows in the SDK.

label.layer.shadowColor = [label.textColor CGColor];
label.layer.shadowOffset = CGSizeMake(0.0, 0.0);

Import <QuartzCore/QuartzCore.h> and play with some parameters:

label.layer.shadowRadius = 3.0;
label.layer.shadowOpacity = 0.5;

And, if you find your shadow clipped by the label bounds:

label.layer.masksToBounds = NO;
share|improve this answer
11  
Note that to use shadowRadius you have to include the QuartzCore headers: #import <QuartzCore/QuartzCore.h> – blackjack75 Jun 9 '11 at 19:37
For some reason this has no effect on my UILabel – Pascalius Sep 3 '12 at 11:58
1  
+ 1 for the maskToBounds extra info. – eladleb Nov 10 '12 at 22:09
1  
maskToBounds is by default NO, and please edit your example because shadowRadius = 20 is VERY high, so might seen not working (like my case and maybe also for @Pascalius). even 3 (the default) is a bit too much for small labels. – shem Dec 11 '12 at 8:29
ty, updating w/ your suggestions – IlDan Dec 11 '12 at 14:42

I advise you to use the shadowColor and shadowOffset properties of UILabel:

UILabel* label = [[UILabel alloc] init];
label.shadowColor = [UIColor whiteColor];
label.shadowOffset = CGSizeMake(0,1);
share|improve this answer
Thank you but yes. I was actually looking for soft shadow. – Dimitris Mar 2 '10 at 18:37
For "soft" shadow - maybe you can change color properly? for example, i needed "soft" dark shadow. - as blackColor was too sharp, i ended up with grayColor :) Happy coding! :) – Guntis Treulands May 16 '12 at 14:52
He means a blurry shadow, without sharp edges. – Nick Lockwood Jul 1 '12 at 0:34

Subclass UILabel, as stated, then, in drawRect:, do [self drawTextInRect:rect]; to get the text drawn into the current context. Once it is in there, you can start working with it by adding filters and whatnot. If you want to make a drop shadow with what you just drew into the context, you should be able to use:

CGContextSetShadowWithColor()

Look that function up in the docs to learn how to use it.

share|improve this answer

Apply the (soft) shadow on the view's layer, like this:

UILabel *label = [[UIabel alloc] init];
label.layer.shadowColor = [[UIColor whiteColor] CGColor];
label.layer.shadowOpacity = 1.0;
share|improve this answer

I wrote a library that provides a UILabel subclass with soft shadow support and a bunch of other effects:

https://github.com/nicklockwood/FXLabel

share|improve this answer

Subclass UILabel, and override -drawInRect:

share|improve this answer
10  
Okay that's the obvious part. Then what? – Dimitris Nov 10 '09 at 16:35

As of iOS 5 Apple provides a private api method to create labels with soft shadows. The labels are very fast: I'm using dozens at the same time in a series of transparent views and there is no slowdown in scrolling animation.

This is only useful for non-App Store apps (obviously) and you need the header file.

$SBBulletinBlurredShadowLabel = NSClassFromString("SBBulletinBlurredShadowLabel");

CGRect frame = CGRectZero;

SBBulletinBlurredShadowLabel *label = [[[$SBBulletinBlurredShadowLabel alloc] initWithFrame:frame] autorelease];
label.backgroundColor = [UIColor clearColor];
label.textColor = [UIColor whiteColor];
label.font = [UIFont boldSystemFontOfSize:12];
label.text = @"I am a label with a soft shadow!";
[label sizeToFit];
share|improve this answer
2  
You don't want to use this if your app is going to the app store. – Charles Vu Nov 2 '11 at 11:41
3  
Well, to be fair, he stated that in the answer. – pablasso May 1 '12 at 22:34

Additionally to IIDan's answer: For some purposes it is necessary to set

label.layer.shouldRasterize = YES

I think this is due to the blend mode that is used to render the shadow. For example I had a dark background and white text on it and wanted to "highlight" the text using a black shadowy glow. It wasn't working until I set this property.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.