Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.69K
1 Posted Topic
Convention for getters and setters in ObjC encourages getter method be called the variable name and the setter be called the variable name preceeded by set. getter: **[obj myVar]** or **obj.myVar** setter: **[obj setMyVar:value]** or **obj.myVar = value** This kind of negates the example given above. Dot notation and bracket …
The End.