Skip to content

Instantly share code, notes, and snippets.

@fastred
Created May 28, 2014 17:09
Show Gist options
  • Save fastred/4fd2b6b98d5d2685bf88 to your computer and use it in GitHub Desktop.
Save fastred/4fd2b6b98d5d2685bf88 to your computer and use it in GitHub Desktop.
Centering title label in AHKActionSheet
NSMutableParagraphStyle *paragraph = [[NSParagraphStyle defaultParagraphStyle] mutableCopy];
paragraph.alignment = NSTextAlignmentCenter;
actionSheet.titleTextAttributes = @{ NSParagraphStyleAttributeName : [paragraph copy],
NSFontAttributeName : [UIFont systemFontOfSize:14.0f],
NSForegroundColorAttributeName : [UIColor grayColor] };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment