You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
984 B
61 lines
984 B
// |
|
// WXYZ_TouchAssistantView.h |
|
// WXReader |
|
// |
|
// Created by Andrew on 2020/3/20. |
|
// Copyright © 2020 Andrew. All rights reserved. |
|
// |
|
|
|
#import <UIKit/UIKit.h> |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface WXYZ_TouchAssistantView : UIWindow |
|
|
|
@property (nonatomic ,assign ,readonly) TFProductionType productionType; |
|
|
|
interface_singleton |
|
|
|
- (void)setPlayerProductionType:(TFProductionType)productionType; |
|
|
|
/* |
|
* 显示小助手 |
|
*/ |
|
- (void)showAssistiveTouchView; |
|
|
|
/* |
|
* 显示小助手 |
|
*/ |
|
- (void)showAssistiveTouchViewWithImageCover:(NSString *)imageCover productionType:(TFProductionType)productionType; |
|
|
|
/* |
|
* 隐藏小助手 |
|
*/ |
|
- (void)hiddenAssistiveTouchView; |
|
|
|
/* |
|
* 开启播放状态 |
|
*/ |
|
- (void)playPlayerState; |
|
|
|
/* |
|
* 暂停播放状态 |
|
*/ |
|
- (void)pausePlayerState; |
|
|
|
/* |
|
* 停止播放状态 |
|
*/ |
|
- (void)stopPlayerState; |
|
|
|
/* |
|
* 改变播放进度 |
|
*/ |
|
- (void)changePlayProgress:(CGFloat)progress; |
|
|
|
// 关闭悬浮框 |
|
- (void)closeButtonClick; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|