mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-02 22:42:45 +08:00
27 lines
691 B
Objective-C
27 lines
691 B
Objective-C
//
|
|
// RKObjectLoaderTTModel+Loading.m
|
|
// DiscussionBoard
|
|
//
|
|
// Created by Jeremy Ellison on 1/12/11.
|
|
// Copyright 2011 Two Toasters. All rights reserved.
|
|
//
|
|
|
|
#import "RKObjectLoaderTTModel+Loading.h"
|
|
|
|
|
|
@implementation RKObjectLoaderTTModel (Loading)
|
|
|
|
- (void)requestDidStartLoad:(RKRequest*)request {
|
|
NSLog(@"Request Start Load");
|
|
}
|
|
|
|
- (void)request:(RKRequest*)request didSendBodyData:(NSInteger)bytesWritten totalBytesWritten:(NSInteger)totalBytesWritten totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite {
|
|
NSLog(@"Request Did Send Body Data");
|
|
}
|
|
|
|
- (void)request:(RKRequest*)request didLoadResponse:(RKResponse*)response {
|
|
NSLog(@"Request Did Load Response");
|
|
}
|
|
|
|
@end
|