mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00

- Moved globally-relevant methods to BaseViewController, so their menu items are always available. - Big refactor to eliminate redundant appDelegate properties. - Work in progress on reimplementing the navigation bars as a Mac toolbar.
27 lines
586 B
Objective-C
27 lines
586 B
Objective-C
//
|
|
// FeedChooserViewController.h
|
|
// NewsBlur
|
|
//
|
|
// Created by David Sinclair on 2016-01-22.
|
|
// Copyright © 2016 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "NewsBlurAppDelegate.h"
|
|
#import "NewsBlur-Swift.h"
|
|
|
|
typedef NS_ENUM(NSUInteger, FeedChooserOperation)
|
|
{
|
|
FeedChooserOperationMuteSites = 0,
|
|
FeedChooserOperationOrganizeSites = 1,
|
|
FeedChooserOperationWidgetSites = 2
|
|
};
|
|
|
|
|
|
@interface FeedChooserViewController : BaseViewController
|
|
|
|
@property (weak) IBOutlet UITableView *tableView;
|
|
|
|
@property (nonatomic) FeedChooserOperation operation;
|
|
|
|
@end
|