InterviewSolution
Saved Bookmarks
| 1. |
What is @synthesize? |
|
Answer» @SYNTHESIZE creates GETTER and setter for the VARIABLES and allows you to SPECIFY attributes for variables. When you @synthesize the property to the variable, you GENERATE getter and setter for that variable. |
|