mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-03-29 17:18:53 +08:00
18 lines
414 B
Objective-C
18 lines
414 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;
|
|
}
|
|
- (void)loadObjectsFromDataStore;
|
|
@end
|