NewsBlur/clients/ios/Classes/FeedChooserViewController.h
David Sinclair c94e517a88 #1247 (Mac Catalyst edition)
- 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.
2024-01-05 22:02:43 -05:00

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