Abstract class Vs Concrete class in Objective-C.
5104
07-Feb-2016
Updated on 23-Sep-2020
Anonymous User
07-Feb-2016A 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).