Is the concept of the Objective-C categories in anyway similar to the concept of mixins? If so: what are the similarities? In not: what are the differences?
|
|
|
|
|
|
|
To the best of my understanding: Mixins
Categories
|
||
|
|
|
|
Categories are defined for a particular class, as far as I know, you can't create a category and add the methods it implements to several classes. |
||
|
|
|
|
With a mixin, you might derive a new class from your base and the mixin, then instantiate this new class to take advantage of it. With a category, you are effectively adding directly the base class, so that all instances of that base have access to the functionality provided by the category. |
||
|
|
