Explain what is the principle distinction between the function calls and messages?
Answer / Gaurav Johari
@syntheize is a directive used in Objective-C to inform the compiler that an instance variable exists, and it should generate accessor methods (getter and setter) for that variable. For example: n`@synthesize myProperty;`n@dynamic is used to indicate that the implementation of a method or property is not provided in the current class and will be implemented in a subclass. This tells the compiler not to generate accessor methods for those properties.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the point of closures?
What is property classification?
What is category in objective c?
Can you retain delegates?
What is the latest version of objective-c?
Is objective c still used?
Explain application life cycle or application states?
Explain what is #import?
Is c and objective c the same?
How do you define a protocol?
Is objective c superset of c?
What is difference between extern and global?