Saved Bookmarks
| 1. |
Distinguish Between @synthesize And @dynamic In Objective –c? |
|
Answer» @synthesize – It generates the GETTER and setter methods for the property. @DYNAMIC – It notifies the COMPILER that the getter and setter are implemented at some other PLACE. @synthesize – It generates the getter and setter methods for the property. @dynamic – It notifies the compiler that the getter and setter are implemented at some other place. |
|