mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00

- Replaced the non-functional multi-select segmented control in notification popover with four buttons, that are drawn similar to an iOS 13 segmented control.
23 lines
649 B
Objective-C
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
|