mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-26 09:21:00 +03:00
Add more description to @property getters and setters.
This commit is contained in:
parent
e97b02c0d5
commit
5d5f3309fa
@ -233,6 +233,9 @@ int main (int argc, const char * argv[])
|
||||
@property int count;
|
||||
@property (copy) NSString *name; // Copy the object during assignment.
|
||||
@property (readonly) id data; // Declare only a getter method.
|
||||
// To access variable in implementation file, use '_' followed by variable name:
|
||||
_count = 5;
|
||||
NSLog("%@", _count); // => prints 5 to console
|
||||
|
||||
// Methods
|
||||
+/- (return type)methodSignature:(Parameter Type *)parameterName;
|
||||
|
Loading…
Reference in New Issue
Block a user