I have seen self = [super init]
in init methods. I don\'t understand why. Wouldn\'t [super init]
return the superclass? And if we point
Self = [super init];
According to JAVA, this mean a pointer to instance itself so object can message itself.
Same meainng of Self here in objective C,
According to JAVA, Super mean that allow to access base or parent class
Same meainng of Super here in objective C,
Now init instance to to complete the initialization process.