2012-07-10 12:34:58 -07:00
|
|
|
//
|
|
|
|
// DashboardViewController.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Roy Yang on 7/10/12.
|
|
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@class NewsBlurAppDelegate;
|
2012-07-10 16:48:05 -07:00
|
|
|
@class ASIHTTPRequest;
|
2012-07-10 12:34:58 -07:00
|
|
|
|
2012-07-10 16:48:05 -07:00
|
|
|
@interface DashboardViewController : UIViewController
|
|
|
|
<UITableViewDelegate,
|
|
|
|
UITableViewDataSource> {
|
2012-07-10 12:34:58 -07:00
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
UIToolbar *bottomToolbar;
|
2012-07-10 16:48:05 -07:00
|
|
|
UITableView *interactionsTable;
|
2012-07-10 12:34:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@property (nonatomic, retain) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
|
|
@property (retain, nonatomic) IBOutlet UIToolbar *bottomToolbar;
|
2012-07-10 16:48:05 -07:00
|
|
|
@property (retain, nonatomic) IBOutlet UITableView *interactionsTable;
|
2012-07-10 12:34:58 -07:00
|
|
|
|
|
|
|
- (IBAction)doLogout:(id)sender;
|
2012-07-10 16:48:05 -07:00
|
|
|
- (void)refreshInteractions;
|
|
|
|
- (void)finishLoadInteractions:(ASIHTTPRequest *)request;
|
|
|
|
- (void)requestFailed:(ASIHTTPRequest *)request;
|
2012-07-10 12:34:58 -07:00
|
|
|
@end
|