Skip to content

Instantly share code, notes, and snippets.

@jyaunches
Created March 12, 2013 17:52
Show Gist options
  • Save jyaunches/5145216 to your computer and use it in GitHub Desktop.
Save jyaunches/5145216 to your computer and use it in GitHub Desktop.
Examples of property attributes.
@property (nonatomic, strong) SomeOtherObject *containedObject;
@property (nonatomic, weak) SomeOtherObject *containerObject;
@propery (nonatomic) int value;
@property (nonatomic, readonly, strong) NSDate *dateCreated;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment