X-Git-Url: http://git.ithinksw.org/ITFoundation.git/blobdiff_plain/f63895da2dd9edf0d6f475d49ba9e845c1083f18..dda524c432a0448c25815e4b5ac04a5c8a6f3813:/ITCategory-NSArray.h diff --git a/ITCategory-NSArray.h b/ITCategory-NSArray.h new file mode 100755 index 0000000..e879feb --- /dev/null +++ b/ITCategory-NSArray.h @@ -0,0 +1,25 @@ +/* + * ITKit + * ITCategory-NSArray.h + * Category which extends NSArray + * + * Original Author : Joseph Spiros + * Responsibility : Matt Judy + * Responsibility : Joseph Spiros + * + * Copyright (c) 2002 - 2003 iThink Software. + * All Rights Reserved + * + */ + + +#import + + +@interface NSArray (ITCategory) + +- (NSArray *)objectsForKey:(NSString *)key; +- (BOOL)containsString:(NSString *)string; + + +@end