Skip to content

Instantly share code, notes, and snippets.

@jfahrenkrug
Created December 24, 2009 11:10
Show Gist options
  • Save jfahrenkrug/263149 to your computer and use it in GitHub Desktop.
Save jfahrenkrug/263149 to your computer and use it in GitHub Desktop.
@interface MyViewController : NSViewController <NSCollectionViewDelegate>
{
IBOutlet NSCollectionView *collectionView;
IBOutlet NSArrayController *arrayController;
NSMutableArray *images;
NSUInteger sortingMode;
BOOL alternateColors;
NSArray *savedAlternateColors;
}
@property(retain) NSMutableArray *images;
@property(assign) NSUInteger sortingMode;
@property(assign) BOOL alternateColors;
- (void)doubleClick:(id)sender;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment