mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
29 lines
797 B
Objective-C
29 lines
797 B
Objective-C
//
|
|
// FeedsMenuViewController.h
|
|
// NewsBlur
|
|
//
|
|
// Created by Roy Yang on 6/19/12.
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "NewsBlurAppDelegate.h"
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
@interface FeedsMenuViewController : BaseViewController
|
|
<UITableViewDelegate, UITableViewDataSource> {
|
|
NewsBlurAppDelegate *appDelegate;
|
|
}
|
|
|
|
@property (nonatomic, strong) NSArray *menuOptions;
|
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
@property (nonatomic) IBOutlet UITableView *menuTableView;
|
|
@property (nonatomic) IBOutlet UISegmentedControl *fontSizeSegment;
|
|
@property (nonatomic) IBOutlet UISegmentedControl *themeSegmentedControl;
|
|
|
|
- (void)rebuildOptions;
|
|
- (IBAction)changeFontSize:(id)sender;
|
|
- (IBAction)changeTheme:(id)sender;
|
|
|
|
@end
|