Posts

Showing posts from February, 2015

Add shadow to text in UITextView

Image
    NSShadow * shadow = [[NSShadow alloc] init];     shadow.shadowColor = [UIColor blackColor];     shadow.shadowOffset = CGSizeMake(1, 2);        NSDictionary * textAttributes =  @{                                        NSForegroundColorAttributeName : [UIColor blueColor],                                        NSShadowAttributeName          : shadow,                                        NSFontAttributeName            : [UIFont boldSystemFontOfSize:20]                                        };        txtView.attributedText = [[NSAttributedString alloc] initWithString:@"Go to Heaven for the climate, Hell for the company." attributes:textAttributes];