InterviewSolution
Saved Bookmarks
| 1. |
What Are The Differences Between @property And @synthesize? |
|
Answer» The @PROPERTY - declares a property. The @synthesize - CREATES GETTER and SETTER methods for a property For EXAMPLE, @property floats value; The @property - declares a property. The @synthesize - creates getter and setter methods for a property For Example, @property floats value; |
|