⟩ Can you please explain the difference between between @synthesize and @dynamic in Objective –C?
@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.