i asked meaning of "SUPER" keyword in view didload method eg. [super viewdidload] kindly tell me correct meaning of this keyword.
Asked
Active
Viewed 259 times
-7
-
super = calling the superclass of the current class. – Saheb Roy Nov 24 '15 at 08:06
-
3Check `http://stackoverflow.com/questions/3095360/what-exactly-is-super-in-objective-c` – Midhun MP Nov 24 '15 at 08:16
1 Answers
0
The keyword super
refers to the superclass of the caller. In usage, it's a way to invoke the superclass's implementation of the current method.

Avi
- 7,469
- 2
- 21
- 22