NewsBlur/media/iphone/Classes/DashboardViewController.h

29 lines
771 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;
@interface DashboardViewController : UIViewController <UIPopoverControllerDelegate> {
NewsBlurAppDelegate *appDelegate;
UIToolbar *bottomToolbar;
}
@property (nonatomic, retain) IBOutlet NewsBlurAppDelegate *appDelegate;
@property (retain, nonatomic) IBOutlet UIToolbar *bottomToolbar;
- (IBAction)doLogout:(id)sender;
2012-07-10 16:48:05 -07:00
- (void)refreshInteractions;
2012-07-11 18:08:07 -07:00
- (void)refreshActivity;
2012-07-10 16:48:05 -07:00
- (void)finishLoadInteractions:(ASIHTTPRequest *)request;
2012-07-11 18:08:07 -07:00
- (void)finishLoadActivities:(ASIHTTPRequest *)request;
2012-07-10 16:48:05 -07:00
- (void)requestFailed:(ASIHTTPRequest *)request;
@end