mirror of
https://github.com/YTLitePlus/YTLitePlus.git
synced 2026-04-19 21:42:05 +00:00
9 lines
389 B
Objective-C
9 lines
389 B
Objective-C
#import "YTQTMButton.h"
|
|
#import "YTILikeButtonRenderer.h"
|
|
|
|
@interface YTReelWatchLikesController : NSObject
|
|
@property (nonatomic, strong, readwrite) YTQTMButton *likeButton;
|
|
@property (nonatomic, strong, readwrite) YTQTMButton *dislikeButton;
|
|
- (id)likeModelForLikeButtonRenderer:(YTILikeButtonRenderer *)renderer;
|
|
- (void)updateLikeButtonWithModel:(id)model animated:(BOOL)animated;
|
|
@end
|