Skip to content

Instantly share code, notes, and snippets.

@TomLiu
Created April 11, 2014 01:43
Show Gist options
  • Save TomLiu/10436580 to your computer and use it in GitHub Desktop.
Save TomLiu/10436580 to your computer and use it in GitHub Desktop.
Macro of text alignment for iOS5 and later
#ifdef NSTextAlignmentCenter
#define BLTextAlignmentCenter NSTextAlignmentCenter
#define BLTextAlignmentLeft NSTextAlignmentLeft
#define BLTextAlignmentRight NSTextAlignmentRight
#define BLTextTruncationTail NSLineBreakByTruncatingTail
#define BLTextTruncationMiddle NSLineBreakByTruncatingMiddle
#else
#define BLTextAlignmentCenter UITextAlignmentCenter
#define BLTextAlignmentLeft UITextAlignmentLeft
#define BLTextAlignmentRight UITextAlignmentRight
#define BLTextTruncationTail UILineBreakModeTailTruncation
#define BLTextTruncationMiddle UILineBreakModeMiddleTruncation
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment