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;
|
|
|
|
}
|
|
|
|
|
|
|
|
@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;
|
2012-06-19 14:19:19 -07:00
|
|
|
@property (retain, nonatomic) IBOutlet UITableView *menuTableView;
|
2012-06-19 10:55:46 -07:00
|
|
|
|
|
|
|
- (IBAction)tapCancelButton:(UIBarButtonItem *)sender;
|
|
|
|
- (void)finishedWithError:(ASIHTTPRequest *)request;
|
|
|
|
|
|
|
|
@end
|