Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UILineBreakMode Vs NSLineBreakMode

I see some UIStringDrawing methods have been updated to use NSLineBreakMode instead of UILineBreakMode in iOS 6.0:

E.g.

- (CGSize)sizeWithFont:(UIFont *)font constrainedToSize:(CGSize)size lineBreakMode:(NSLineBreakMode)lineBreakMode

How can I check for this to ensure my iOS 5 users and below continue to use UILineBreakMode?

like image 287
mootymoots Avatar asked Oct 03 '12 18:10

mootymoots


2 Answers

No checking is necessary. These are just enums and they map to the same values

You can see there is no real difference here:

UILineBreakMode vs NSLineBreakMode

  enum {
   NSLineBreakByWordWrapping = 0,
   NSLineBreakByCharWrapping,
   NSLineBreakByClipping,
   NSLineBreakByTruncatingHead,
   NSLineBreakByTruncatingTail,
   NSLineBreakByTruncatingMiddle
};
typedef NSUInteger NSLineBreakMode



typedef enum {
   UILineBreakModeWordWrap = 0,
   UILineBreakModeCharacterWrap,
   UILineBreakModeClip,
   UILineBreakModeHeadTruncation,
   UILineBreakModeTailTruncation,
   UILineBreakModeMiddleTruncation,
} UILineBreakMode;
like image 171
brynbodayle Avatar answered Nov 09 '22 21:11

brynbodayle


UILineBrakeMode is deprecated in ios6 http://developer.apple.com/library/ios/#documentation/uikit/reference/NSString_UIKit_Additions/Reference/Reference.html#//apple_ref/doc/c_ref/UILineBreakMode

like image 40
trickster77777 Avatar answered Nov 09 '22 20:11

trickster77777