-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 实时直播时, 将会隐藏进度时间相关的 item, 增加了一个实时直播的 `文本 item`. - 完善 Adapter, 减少容器中的视图层次
- Loading branch information
1 parent
067e90a
commit 002bd0c
Showing
31 changed files
with
779 additions
and
702 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
30 changes: 0 additions & 30 deletions
30
SJVideoPlayer/Adapters/Core/SJButtonItemCollectionViewCell.h
This file was deleted.
Oops, something went wrong.
118 changes: 0 additions & 118 deletions
118
SJVideoPlayer/Adapters/Core/SJButtonItemCollectionViewCell.m
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// | ||
// SJEdgeControlButtonItemCell.h | ||
// SJVideoPlayer | ||
// | ||
// Created by BlueDancer on 2018/10/20. | ||
// Copyright © 2018 畅三江. All rights reserved. | ||
// | ||
|
||
#import <UIKit/UIKit.h> | ||
@class SJEdgeControlButtonItem; | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
@interface SJEdgeControlButtonItemCell : UICollectionViewCell | ||
+ (NSString *)reuseIdentifier; | ||
+ (void)registerWithCollectionView:(UICollectionView *)collectionView; | ||
+ (instancetype)cellWithCollectionView:(UICollectionView *)collectionView | ||
forIndexPath:(NSIndexPath *)indexPath | ||
willSetItem:(SJEdgeControlButtonItem *)item; | ||
@property (nonatomic, strong, nullable) SJEdgeControlButtonItem *item; | ||
- (void)setItem:(SJEdgeControlButtonItem * _Nullable)item NS_REQUIRES_SUPER; | ||
@end | ||
NS_ASSUME_NONNULL_END |
Oops, something went wrong.