tags:

views:

82

answers:

2

Hi, Can a class extend two or more classes in Objective-C?

+5  A: 

Objective-C does not allow multiple inheritance.

You could use protocols to achieve whatever you are trying.

BennyM
A: 

Categories could also be used (on a common superclass).

xyzzycoder