-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
733 additions
and
868 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
GKDYVideo/Classes/Home/Video/Controller/GKDYListPlayerController.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// | ||
// GKDYListPlayerController.h | ||
// GKDYVideo | ||
// | ||
// Created by QuintGao on 2024/9/9. | ||
// Copyright © 2024 QuintGao. All rights reserved. | ||
// | ||
|
||
#import "GKDYBaseViewController.h" | ||
#import "GKDYVideoScrollView.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface GKDYPlayerNavigationController : UINavigationController | ||
|
||
@end | ||
|
||
@protocol GKDYListPlayerControllerDelegate <NSObject> | ||
|
||
- (UIView *)sourceViewWithIndex:(NSInteger)index; | ||
|
||
@end | ||
|
||
@interface GKDYListPlayerController : GKDYBaseViewController | ||
|
||
@property (nonatomic, weak) id<GKDYListPlayerControllerDelegate> delegate; | ||
|
||
@property (nonatomic, strong) GKDYVideoScrollView *scrollView; | ||
|
||
@property (nonatomic, strong) NSMutableArray *videoList; | ||
@property (nonatomic, assign) NSInteger index; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
Oops, something went wrong.