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>
|
2017-03-19 18:15:36 -07:00
|
|
|
#import "NewsBlurAppDelegate.h"
|
2012-06-19 10:55:46 -07:00
|
|
|
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
|
2017-03-19 18:15:36 -07:00
|
|
|
@interface FeedsMenuViewController : BaseViewController
|
2017-04-11 15:43:42 -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-10-12 13:58:26 -04:00
|
|
|
@property (nonatomic) IBOutlet UITableView *menuTableView;
|
2017-10-04 16:34:30 -07:00
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *fontSizeSegment;
|
2016-02-08 17:31:46 -08:00
|
|
|
@property (nonatomic) IBOutlet UISegmentedControl *themeSegmentedControl;
|
|
|
|
|
2017-11-14 21:46:21 -08:00
|
|
|
- (void)rebuildOptions;
|
2017-10-04 16:34:30 -07:00
|
|
|
- (IBAction)changeFontSize:(id)sender;
|
2016-02-08 17:31:46 -08:00
|
|
|
- (IBAction)changeTheme:(id)sender;
|
2012-06-19 10:55:46 -07:00
|
|
|
|
|
|
|
@end
|