mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
23 lines
591 B
Objective-C
23 lines
591 B
Objective-C
//
|
|
// NotificationsViewController.h
|
|
// NewsBlur
|
|
//
|
|
// Created by Samuel Clay on 11/23/16.
|
|
// Copyright © 2016 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "NewsBlurAppDelegate.h"
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
@interface NotificationsViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> {
|
|
NewsBlurAppDelegate *appDelegate;
|
|
NSArray *notificationFeedIds;
|
|
}
|
|
|
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
@property (nonatomic) IBOutlet UITableView *notificationsTable;
|
|
@property (nonatomic) NSString *feedId;
|
|
|
|
@end
|