mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-10-30 12:33:57 -04:00
12 lines
452 B
Objective-C
12 lines
452 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import "SponsorSegment.h"
|
|
#import "SponsorBlockRequest.h"
|
|
|
|
@interface SponsorSegmentView : UIView
|
|
@property (strong, nonatomic) SponsorSegment *sponsorSegment;
|
|
@property (nonatomic, assign) BOOL editable;
|
|
@property (strong, nonatomic) UILabel *segmentLabel;
|
|
@property (strong, nonatomic) UILabel *categoryLabel;
|
|
- (instancetype)initWithFrame:(CGRect)frame sponsorSegment:(SponsorSegment *)segment editable:(BOOL)editable;
|
|
@end
|