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.
29 lines
670 B
29 lines
670 B
4 years ago
|
//
|
||
|
// WXYZ_BookAiPlayPageViewController.h
|
||
|
// WXReader
|
||
|
//
|
||
|
// Created by Andrew on 2020/3/8.
|
||
|
// Copyright © 2020 Andrew. All rights reserved.
|
||
|
//
|
||
|
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface WXYZ_BookAiPlayPageViewController : TFBasicViewController
|
||
|
|
||
|
@property (nonatomic, assign, readonly) BOOL speaking;
|
||
|
|
||
|
@property (nonatomic, assign, readonly) BOOL stoped; // 暂停不可播放状态
|
||
|
|
||
|
@property (nonatomic, strong) TFProductionModel *bookModel;
|
||
|
|
||
|
interface_singleton
|
||
|
|
||
|
- (instancetype)init NS_UNAVAILABLE;
|
||
|
|
||
|
- (void)loadDataWithBookModel:(TFProductionModel * __nullable)bookModel chapterModel:(TFProductionChapterModel * __nullable)chapterModel;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|