I have worked on c++, there we used initializer list like below to initialize the constructor of base class.
Derived::Derived(int x):Base(x) {
cout << "B's Constructor called";
}
How to acheive the same action in objective C. How to pass value to base (super) class while initlizing. Is it possible?
thanx.