mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
25 lines
484 B
C
25 lines
484 B
C
![]() |
//
|
||
|
// FeedChooserViewController.h
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by David Sinclair on 2016-01-22.
|
||
|
// Copyright © 2016 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
typedef NS_ENUM(NSUInteger, FeedChooserOperation)
|
||
|
{
|
||
|
FeedChooserOperationMuteSites = 0,
|
||
|
FeedChooserOperationOrganizeSites = 1
|
||
|
};
|
||
|
|
||
|
|
||
|
@interface FeedChooserViewController : UIViewController
|
||
|
|
||
|
@property (weak) IBOutlet UITableView *tableView;
|
||
|
|
||
|
@property (nonatomic) FeedChooserOperation operation;
|
||
|
|
||
|
@end
|