mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-06-18 07:29:15 +08:00
15 lines
517 B
Objective-C
15 lines
517 B
Objective-C
//
|
|
// RKNotifications.m
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 9/24/09.
|
|
// Copyright 2009 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import "RKNotifications.h"
|
|
|
|
NSString* const RKRequestSentNotification = @"RKRequestSentNotification";
|
|
NSString* const RKRequestDidLoadResponseNotification = @"RKRequestDidLoadResponseNotification";
|
|
NSString* const RKRequestFailedWithErrorNotification = @"RKRequestFailedWithErrorNotification";
|
|
NSString* const RKResponseReceivedNotification = @"RKRespongReceivedNotification";
|