What is inheritance in objective c?
Answer / Sumit Sharma
"Inheritance" is a concept in object-oriented programming where one class inherits properties and methods from another class. In Objective-C, a subclass can inherit from a superclass by specifying the superclass in the @interface declaration. The subclass can then override or extend the behavior of inherited methods as needed.
| Is This Answer Correct ? | 0 Yes | 0 No |
When to use nsautoreleasepool??
How messaging works in objective-c?
What is an accessor method?
How to use swift protocol in objective c?
What is objective c and swift?
What is nonatomic and strong in objective c?
How do you add a category in objective c?
Can a static library (.a) contain resources like images, sound files etc?
What are the rules of variable?
Explain the difference between uiwindow and uiview?
Can you please explain the way messaging works in objective-c?
Explain immutable types in objective c programming language?