NewsBlur/clients/ios/Classes/FeedsMenuViewController.h

25 lines
632 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>
@class NewsBlurAppDelegate;
@interface FeedsMenuViewController : UIViewController
<UITableViewDelegate, UITableViewDataSource, UIAlertViewDelegate> {
2012-06-19 10:55:46 -07:00
NewsBlurAppDelegate *appDelegate;
UIAlertView *loginAsAlert;
2012-06-19 10:55:46 -07:00
}
@property (nonatomic, strong) NSArray *menuOptions;
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
@property (nonatomic) IBOutlet UITableView *menuTableView;
@property (nonatomic) IBOutlet UIAlertView *loginAsAlert;
2012-06-19 10:55:46 -07:00
@end