Skip to content

Instantly share code, notes, and snippets.

@AviTsadok
Created July 6, 2019 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AviTsadok/de3eddf40451c25486acca1491f0df66 to your computer and use it in GitHub Desktop.
Save AviTsadok/de3eddf40451c25486acca1491f0df66 to your computer and use it in GitHub Desktop.
Contact Status Example
typedef NS_OPTIONS(NSUInteger, ContactStatus) {
Deleted = (1 << 0), // => 00000001
Archived = (1 << 1), // => 00000010
Exists = (1 << 2) // => 00000100
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment