NewsBlur/clients/ios/Classes/MarkReadMenuViewController.h
David Sinclair 4b9327decc iOS: fixed #858 (mark older/newer as read & sharing)
Added a new “Ask” item to the Long Press Story Title preferences.
Chosen by default.

When “Ask” is selected, the feed detail long press displays a menu with
mark read options and other long press options.
2016-01-08 21:53:18 -08:00

23 lines
764 B
Objective-C

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