What is class extension?
Answer / Pramod Singh Gunjiyal
Class extensions in Objective-C are a way to extend the functionality of an existing class without modifying its original implementation. They allow you to add new methods, properties, and subclasses to a class without changing the public interface. This helps keep the code organized and maintainable.
| Is This Answer Correct ? | 0 Yes | 0 No |
How do I open .am files?
How is #import different from #include?
Mention which class can you use for parsing of xml in iphone?
Who calls dealloc method? Can we implement dealloc in arc?
What is delegation protocol?
What is synthesized in objective-c?
How do I open .m files?
Can we implement dealloc in arc? If yes, what is the need to do that?
How is string represented in objective-c?
How to initialize nsmutabledictionary in objective c?
What happens if you add your just created object to a mutable array, and you release your object?
How to add object to nsarray objective c?