Abstract class Vs Concrete class in Objective-C.
Ask by Anonymous User
Updated 23 Sep 2020
A concrete class is a class that can be used to create an object. An abstract class cannot be used to create an object (we must extend an abstract class and make a concrete class to be able to then create an object).