mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-03-30 17:43:22 +08:00
18 lines
381 B
Objective-C
18 lines
381 B
Objective-C
//
|
|
// RKTwitterViewController.h
|
|
// RKTwitter
|
|
//
|
|
// Created by Blake Watters on 9/5/10.
|
|
// Copyright Two Toasters 2010. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <RestKit/RestKit.h>
|
|
|
|
@interface RKTwitterViewController : UIViewController <UITableViewDelegate, UITableViewDataSource, RKObjectLoaderDelegate> {
|
|
UITableView* _tableView;
|
|
NSArray* _statuses;
|
|
}
|
|
|
|
@end
|