NewsBlur/media/ios/Classes/FeedsMenuViewController.h

24 lines
596 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> {
2012-06-19 10:55:46 -07:00
NewsBlurAppDelegate *appDelegate;
}
@property (nonatomic, strong) NSArray *menuOptions;
@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