2016-01-27 20:52:09 -08:00
|
|
|
//
|
|
|
|
// FeedChooserViewController.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by David Sinclair on 2016-01-22.
|
|
|
|
// Copyright © 2016 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2017-03-19 12:09:49 -07:00
|
|
|
#import "NewsBlurAppDelegate.h"
|
2020-08-27 21:26:12 -07:00
|
|
|
#import "NewsBlur-Swift.h"
|
2016-01-27 20:52:09 -08:00
|
|
|
|
|
|
|
typedef NS_ENUM(NSUInteger, FeedChooserOperation)
|
|
|
|
{
|
|
|
|
FeedChooserOperationMuteSites = 0,
|
2019-12-20 19:09:20 -08:00
|
|
|
FeedChooserOperationOrganizeSites = 1,
|
|
|
|
FeedChooserOperationWidgetSites = 2
|
2016-01-27 20:52:09 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-04-03 12:49:01 -07:00
|
|
|
@interface FeedChooserViewController : BaseViewController {
|
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
}
|
2016-01-27 20:52:09 -08:00
|
|
|
|
|
|
|
@property (weak) IBOutlet UITableView *tableView;
|
|
|
|
|
|
|
|
@property (nonatomic) FeedChooserOperation operation;
|
|
|
|
|
|
|
|
@end
|