The iOS framework that grows only as fast as its documentation
Foundation Methods

Modules

 CGFloat Methods
 For manipulating CGFloat.
 
 CGRect Methods
 For manipulating CGRects.
 
 General Purpose Methods
 For general purpose foundation type manipulation.
 
 NSData Methods
 For manipulating NSData.
 
 NSRange Methods
 For manipulating NSRange.
 
 NSString Methods
 For manipulating NSStrings.
 

Functions

NSInvocation * NIInvocationWithInstanceTarget (NSObject *target, SEL selector)
 
NSInvocation * NIInvocationWithClassTarget (Class targetClass, SEL selector)
 

Overview

For filling in gaps in Apple's Foundation framework.

Utility methods save time and headache. You've probably written dozens of your own. Nimbus hopes to provide an ever-growing set of convenience methods that compliment the Foundation framework's functionality.

Function Documentation

NIInvocationWithInstanceTarget

Construct an NSInvocation with an instance of an object and a selector.

NSInvocation* NIInvocationWithInstanceTarget;
Discussion
Returns
an NSInvocation that will call the given selector on the given target

NIInvocationWithClassTarget

Construct an NSInvocation for a class method given a class object and a selector.

NSInvocation* NIInvocationWithClassTarget;
Discussion
Returns
an NSInvocation that will call the given class method/selector.