NewsBlur/clients/ios/Classes/NotificationFeedCell.h
David Sinclair 18f301556f #1208 (iOS 13 support)
- Replaced the non-functional multi-select segmented control in notification popover with four buttons, that are drawn similar to an iOS 13 segmented control.
2019-09-23 14:52:50 -07:00

23 lines
649 B
Objective-C

//
// NotificationFeedCell.h
// NewsBlur
//
// Created by Samuel Clay on 11/23/16.
// Copyright © 2016 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
@class NewsBlurAppDelegate;
@interface NotificationFeedCell : UITableViewCell
@property (nonatomic) NewsBlurAppDelegate *appDelegate;
@property (nonatomic) NSString *feedId;
@property (nonatomic) UISegmentedControl *filterControl;
@property (nonatomic) UIButton *emailNotificationTypeButton;
@property (nonatomic) UIButton *webNotificationTypeButton;
@property (nonatomic) UIButton *iOSNotificationTypeButton;
@property (nonatomic) UIButton *androidNotificationTypeButton;
@end