NewsBlur/clients/ios/Classes/FeedsMenuViewController.h
2013-06-27 09:43:22 -07:00

24 lines
632 B
Objective-C

//
// FeedsMenuViewController.h
// NewsBlur
//
// Created by Roy Yang on 6/19/12.
// Copyright (c) 2012 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
@class NewsBlurAppDelegate;
@interface FeedsMenuViewController : UIViewController
<UITableViewDelegate, UITableViewDataSource, UIAlertViewDelegate> {
NewsBlurAppDelegate *appDelegate;
UIAlertView *loginAsAlert;
}
@property (nonatomic, strong) NSArray *menuOptions;
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
@property (nonatomic) IBOutlet UITableView *menuTableView;
@property (nonatomic) IBOutlet UIAlertView *loginAsAlert;
@end