Skip to content

Instantly share code, notes, and snippets.

@YGeorge
Created March 17, 2014 16:12
Show Gist options
  • Save YGeorge/9602370 to your computer and use it in GitHub Desktop.
Save YGeorge/9602370 to your computer and use it in GitHub Desktop.
Replace your enum declarations, such as this one:
enum {
UITableViewCellStyleDefault,
UITableViewCellStyleValue1,
UITableViewCellStyleValue2,
UITableViewCellStyleSubtitle
};
typedef NSInteger UITableViewCellStyle;
with the NS_ENUM syntax:
typedef NS_ENUM(NSInteger, UITableViewCellStyle) {
UITableViewCellStyleDefault,
UITableViewCellStyleValue1,
UITableViewCellStyleValue2,
UITableViewCellStyleSubtitle
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment