Add shadow to text in UITextView
NSShadow * shadow = [[NSShadow alloc] init]; shadow.shadowColor = [UIColor blackColor]; shadow.shadowOffset = CGSizeMake(1, 2); NSDictionary * textAttributes = @{ NSForegroundColorAttributeName : [UIColor blueColor], NSShadowAttributeName : shadow, ...