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
|
2012-07-31 13:10:26 -07:00
|
|
|
<UITableViewDelegate,
|
|
|
|
UITableViewDataSource> {
|
2012-06-19 10:55:46 -07:00
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
}
|
|
|
|
|
|
|
|
@property (nonatomic, strong) NSArray *menuOptions;
|
2012-07-31 13:10:26 -07:00
|
|
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
2012-07-15 15:06:06 -07:00
|
|
|
@property ( nonatomic) IBOutlet UITableView *menuTableView;
|
2012-06-19 10:55:46 -07:00
|
|
|
|
|
|
|
@end
|