Declared in NSObject+KoboldKit.h

Overview

NSObject category methods for Kobold Kit

Instance Methods

performSelector:afterDelay:

Performs a selector with delay, with ‘self’ automatically sent to the selector.

- (void)performSelector:(SEL)aSelector afterDelay:(NSTimeInterval)delay

Parameters

aSelector

The selector to perform. Selector must take a single id parameter.

delay

The time to wait (in seconds) before performing the selector.

Declared In

NSObject+KoboldKit.h

performSelectorInBackground:

Performs a selector in background, with ‘self’ automatically sent to the selector.

- (void)performSelectorInBackground:(SEL)aSelector

Parameters

aSelector

The selector to perform. Selector must take a single id parameter.

Declared In

NSObject+KoboldKit.h