2016-11-23 09:29:29 -08:00
|
|
|
//
|
|
|
|
// NotificationFeedCell.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Samuel Clay on 11/23/16.
|
|
|
|
// Copyright © 2016 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2016-11-23 15:15:18 -06:00
|
|
|
#import "MultiSelectSegmentedControl.h"
|
2016-11-23 09:29:29 -08:00
|
|
|
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
|
2016-11-23 15:15:18 -06:00
|
|
|
@interface NotificationFeedCell : UITableViewCell <MultiSelectSegmentedControlDelegate> {
|
2016-11-23 09:29:29 -08:00
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@property (nonatomic) NewsBlurAppDelegate *appDelegate;
|
2016-11-23 15:05:30 -06:00
|
|
|
@property (nonatomic) NSString *feedId;
|
2016-11-23 14:37:49 -06:00
|
|
|
@property (nonatomic) UISegmentedControl * filterControl;
|
2016-11-23 15:15:18 -06:00
|
|
|
@property (nonatomic) MultiSelectSegmentedControl * notificationTypeControl;
|
2016-11-23 09:29:29 -08:00
|
|
|
|
|
|
|
@end
|