2016-11-23 08:09:19 -08:00
|
|
|
//
|
|
|
|
// NotificationsViewController.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Samuel Clay on 11/23/16.
|
|
|
|
// Copyright © 2016 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2016-11-23 09:29:29 -08:00
|
|
|
#import "NewsBlurAppDelegate.h"
|
2016-11-23 08:09:19 -08:00
|
|
|
|
2016-11-23 09:29:29 -08:00
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
|
2017-06-01 22:32:35 -07:00
|
|
|
@interface NotificationsViewController : BaseViewController <UITableViewDelegate, UITableViewDataSource> {
|
2016-11-23 09:29:29 -08:00
|
|
|
NewsBlurAppDelegate *appDelegate;
|
2017-04-11 17:07:29 -07:00
|
|
|
NSArray *notificationFeedIds;
|
2016-11-23 09:29:29 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
|
|
@property (nonatomic) IBOutlet UITableView *notificationsTable;
|
2016-11-23 10:13:22 -08:00
|
|
|
@property (nonatomic) NSString *feedId;
|
2016-11-23 08:09:19 -08:00
|
|
|
|
|
|
|
@end
|