NewsBlur/media/iphone/Classes/DashboardViewController.h

31 lines
826 B
C
Raw Normal View History

//
// 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 16:48:05 -07:00
@interface DashboardViewController : UIViewController
<UITableViewDelegate,
UITableViewDataSource> {
NewsBlurAppDelegate *appDelegate;
UIToolbar *bottomToolbar;
2012-07-10 16:48:05 -07:00
UITableView *interactionsTable;
}
@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;
- (IBAction)doLogout:(id)sender;
2012-07-10 16:48:05 -07:00
- (void)refreshInteractions;
- (void)finishLoadInteractions:(ASIHTTPRequest *)request;
- (void)requestFailed:(ASIHTTPRequest *)request;
@end