2015-11-13 21:54:32 -08:00
|
|
|
//
|
|
|
|
// MarkReadMenuViewController.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by David Sinclair on 2015-11-13.
|
|
|
|
// Copyright © 2015 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2015-11-29 18:08:44 -08:00
|
|
|
#import "StoriesCollection.h"
|
2015-11-13 21:54:32 -08:00
|
|
|
|
|
|
|
@interface MarkReadMenuViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
|
|
|
|
|
|
|
|
@property (weak) IBOutlet UITableView *menuTableView;
|
|
|
|
|
|
|
|
@property (nonatomic, strong) NSString *collectionTitle;
|
|
|
|
@property (nonatomic, strong) NSArray *feedIds;
|
|
|
|
@property (nonatomic) NSInteger visibleUnreadCount;
|
2015-11-29 18:08:44 -08:00
|
|
|
@property (nonatomic, strong) StoriesCollection *olderNewerStoriesCollection;
|
|
|
|
@property (nonatomic, strong) NSDictionary *olderNewerStory;
|
2016-01-08 21:53:16 -08:00
|
|
|
@property (nonatomic, strong) NSArray *extraItems;
|
2015-11-13 21:54:32 -08:00
|
|
|
@property (nonatomic, copy) void (^completionHandler)(BOOL marked);
|
|
|
|
|
|
|
|
@end
|