NewsBlur/clients/ios/Classes/MarkReadMenuViewController.h
David Sinclair c9e02c600b iOS: done #816 (replacing action sheets)
Only the older/newer long-press one; still have the story image one,
but I think that’s okay as-is since it has a title/alt text display.
Also removed some redundant code.
2015-11-29 18:08:44 -08:00

22 lines
713 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, copy) void (^completionHandler)(BOOL marked);
@end