21 lines
501 B
Objective-C
21 lines
501 B
Objective-C
//
|
|
// SCVodVideoPlayerViewController.h
|
|
// SellyCloudSDK_Example
|
|
// 点播播放器
|
|
// Created by Caleb on 1/7/26.
|
|
// Copyright © 2026 Caleb. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <SellyCloudSDK/SellyCloudManager.h>
|
|
#import "AVLiveStreamModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SCVodVideoPlayerViewController : UIViewController
|
|
// 移除外部传入的属性,改为内部配置
|
|
- (instancetype)initWithLiveStream:(AVLiveStreamModel *)stream;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|