NewsBlur/media/iphone/Classes/FeedsMenuViewController.h

35 lines
992 B
C
Raw Normal View History

2012-06-19 10:55:46 -07:00
//
// FeedsMenuViewController.h
// NewsBlur
//
// Created by Roy Yang on 6/19/12.
// Copyright (c) 2012 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "ASIHTTPRequest.h"
@class NewsBlurAppDelegate;
@interface FeedsMenuViewController : UIViewController
<ASIHTTPRequestDelegate,
UITableViewDelegate,
UITableViewDataSource,
UIAlertViewDelegate> {
NewsBlurAppDelegate *appDelegate;
2012-06-19 13:51:48 -07:00
IBOutlet UIToolbar *toolbar;
IBOutlet UITableView *tableView;
2012-06-19 10:55:46 -07:00
}
@property (nonatomic, retain) IBOutlet NewsBlurAppDelegate *appDelegate;
@property (nonatomic, strong) NSArray *menuOptions;
2012-06-19 13:51:48 -07:00
@property (nonatomic, retain) IBOutlet UIToolbar *toolbar;
@property (retain, nonatomic) IBOutlet UITableView *tableView;
2012-06-19 10:55:46 -07:00
- (IBAction)tapCancelButton:(UIBarButtonItem *)sender;
- (void)finishedWithError:(ASIHTTPRequest *)request;
@end