Multiple choice technology

Which of the following refers to the current controllers object iphone

  1. This

  2. Super

  3. Self

  4. Delegate

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

In Objective-C, 'self' refers to the current object instance receiving the message (like 'this' in C++ or Java). 'super' is for calling superclass methods, 'delegate' is a design pattern role, and 'this' is not used in Objective-C.