Distinguish 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.

Comments

Popular posts from this blog

In Swift, Optionals and Optional Binding are key concepts for handling values ?

What is benifit of using higher order functions?

Swift Optionals and force unwrapping?