Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was reading that NSArray is just such a thing. Sounds heavy. I have 7 really fat books here on my desk about Objective-C, Cocoa and C. None of them mention Class Cluster at all, at least I can't find it in the Index at the back of the books. So what's that?

share|improve this question
Oops, next time i'll think to add a link for that term. If you would have commented on the answer to you previous question i'd have responded there. – Georg Fritzsche Dec 4 '09 at 1:35

5 Answers

up vote 23 down vote accepted

From Apple's docs.... In short it's a design pattern used in the Foundation framework, which is probably why it's not mentioned in ObjC books.

share|improve this answer
+1 for googling ;) – Georg Fritzsche Dec 4 '09 at 1:37
1  
yeah, low-hanging fruit you know... – echo Dec 4 '09 at 1:47
1  
roflmao. thanks. gonna google next time. thought if its not in my fat books, it can only be on your heads ;) – openfrog Dec 4 '09 at 17:34
1  
The one thing this link is missing is an explanation on how to best alter the implementation for ARC. – Hyperbole Nov 1 '12 at 21:33

I don't know what is in the CDP that Steve referenced but basically the Objective-C Class Cluster is a construct that supports implementing the abstract Factory pattern.

The idea is simple: You want to provide a Factory (Cluster) interface that, with minimal description, manufactures and returns a specific concrete instance of a Factory Object that satisfies the behavior of the cluster family described by the Factory (Cluster) interface.

A simple concrete example: This example provides a Laugh factory that produces concrete classes of specific laughter types (e.g. Guffaw, Giggle). Pay attention to the Laugh initWithLaugher: method.

In Laugh.h:

#define kLaughWithGuffaw  1
#define kLaughWithGiggle  2

@interface Laugh: NSObject {}
- (Laugh *) initWithLaugher:(NSUInteger) laugherType;
- (void) laugh;
@end

In Laugh.m:

@interface Guffaws:Laugh {}
- (void) laugh;
@end

@interface Giggles:Laugh {}
- (void) laugh;
@end

@implementation Laugh
- (Laugh *) initWithLaugher:(NSUInteger) laugherType {
    id instanceReturn=nil;
    [self release]
    if ( laughterType == kLaughWithGuffaw )
        instanceReturn = [[Guffaws alloc]init];
    else if( laughterType == kLaughWithGiggle )
        instanceReturn = [[Giggles alloc]init];
   else
        ; // deal with this
return instanceReturn;
}

- (void) laugh {
    NSLog(@"Humbug");
}
@end

@implementation Guffaws
    - (void) laugh {
        NSLog(@"OH HA HA HOWAH HA HA HA");
    }
@end

@implementation Giggles
    - (void) laugh {
        NSLog(@"Tee hee");
    }
@end
share|improve this answer
3  
While the other answers were good providing doc & book links, I like this because it makes it nice and simple to see how to actually do this. Thanks – jamone Apr 26 '11 at 17:31
+1 for small example !! – The Tiger Dec 14 '12 at 13:50
+1 for the nice and effective explanation...!!!! keep it up..... – Kamarshad Feb 14 at 19:06
This example is good but in a typical Factory pattern the subclasses are public. In a Class cluster the subclasses are private. developer.apple.com/library/ios/documentation/general/… – maxpower yesterday

For a guy who seems to need another book :-):

Cocoa Design Patterns contains a chapter dedicated to the Class Cluster Pattern.

--Steve

share|improve this answer

From programming in objective c by Stephen Kochan on page 498 in the glossary, cluster:

An abstract class that groups a set of private concrete subclasses, providing a simplified interface to the user through the abstract class.

share|improve this answer
3  
+1 For quoting an answer from an Objective-C book, particularly given the original question. That's a good book, too. – Quinn Taylor Dec 4 '09 at 22:57

The NSArray class cluster isn't "heavyweight", it's a way for any number of implementations of an array class to be used without your code knowing or caring about the particular implementation. Under the hood, there are concrete subclasses of NSArray that are appropriate to different use cases, such as large, sparse arrays, or arrays containing a specific number of elements that are known at compile time.

NSArray, NSString, and NSNumber are the class clusters you'll most often encounter.

share|improve this answer
4  
Ironically, in practice, only one concrete class per cluster is ever used anymore — NSCF{Array|String|Number} — and the implementation changes are internal to that class. That's as far as I know, anyway. Even NSArray and NSMutableArray instances show up the same class. – Chuck Mar 17 '10 at 2:02
@Chuck - how can this be the case? If a NSMutableArray and NSArray reported themselves to be the same class wouldn't [myArray isKindOfClass:[NSMutableArray class]] return YES even though it should not? – Robert Feb 26 at 11:41
@Robert: And indeed that was the case at the time of my comment. Nowadays Apple has replaced NSCFArray with __NSArrayM and __NSArrayI, so I think it's no longer so, but I still wouldn't feel comfortable depending on it, as they could always change it again. – Chuck Feb 26 at 19:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.