ObjC doesn't have the concept of abstract classes.
t
tapchicoma
03/11/2019, 3:07 PM
Then it will be protocol with default methods implementation?
s
Sam
03/11/2019, 5:58 PM
In my test, it created a header entry in the framework header for my class but ignored the abstract function. That is consistent with suspending functions too.
s
svyatoslav.scherbina
03/13/2019, 8:08 AM
abstract
functions aren’t ignored, they are just omitted in some cases, e.g. when inherited from super classes, so this doesn’t prevent you from calling them.