Inherits from NSObject
Declared in TKAlertCenter.h

Overview

A notification center for displaying quick bursts of alert information to the user.

Tasks

Class Methods

defaultCenter

Returns the process’s default notification center.

+ (TKAlertCenter *)defaultCenter

Return Value

The current process’s default notification center, which is used for alert notifications.

Discussion

Returns the process’s default notification center.

Declared In

TKAlertCenter.h

Instance Methods

postAlertWithMessage:

Posts a given alert message to the user.

- (void)postAlertWithMessage:(NSString *)message

Parameters

message

The message shown under an image.

Discussion

Posts a given alert message to the user.

Declared In

TKAlertCenter.h

postAlertWithMessage:image:

Posts a given alert message to the user.

- (void)postAlertWithMessage:(NSString *)message image:(UIImage *)image

Parameters

message

The message shown under an image.

image

The image displayed to the user. If image is nil, the message will only be shown.

Discussion

Posts a given alert message to the user.

Declared In

TKAlertCenter.h