mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
24 lines
535 B
C
24 lines
535 B
C
![]() |
//
|
||
|
// FeedDetailMenuViewController.h
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by Samuel Clay on 10/10/12.
|
||
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@class NewsBlurAppDelegate;
|
||
|
|
||
|
@interface FeedDetailMenuViewController : UIViewController
|
||
|
<UITableViewDelegate,
|
||
|
UITableViewDataSource> {
|
||
|
NewsBlurAppDelegate *appDelegate;
|
||
|
}
|
||
|
|
||
|
@property (nonatomic, strong) NSArray *menuOptions;
|
||
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
||
|
@property (nonatomic) IBOutlet UITableView *menuTableView;
|
||
|
|
||
|
@end
|