// // FeedsMenuViewController.h // NewsBlur // // Created by Roy Yang on 6/19/12. // Copyright (c) 2012 NewsBlur. All rights reserved. // #import #import "ASIHTTPRequest.h" @class NewsBlurAppDelegate; @interface FeedsMenuViewController : UIViewController { NewsBlurAppDelegate *appDelegate; } @property (nonatomic, retain) IBOutlet NewsBlurAppDelegate *appDelegate; @property (nonatomic, strong) NSArray *menuOptions; @property (nonatomic, retain) IBOutlet UIToolbar *toolbar; @property (retain, nonatomic) IBOutlet UITableView *menuTableView; - (IBAction)tapCancelButton:(UIBarButtonItem *)sender; - (void)finishedWithError:(ASIHTTPRequest *)request; @end