Aar*_*Oza 18 objective-c uitableview uiscrollview tableviewcell ios
我做了什么: -
我已经添加了在单元格完全可见时播放视频的代码,当我向下或向上滚动时,它会再次重新加载tableview并再次播放视频.但是,我的要求是不同的.
我真正想要的是:
我想播放视频,直到完全可见的向后或向前的单元格.当用户向下滚动或向上滚动时,它不会影响直到完全可见的向后或向前单元格.
设计
Table Cell Layout Description
-> Video Table Cell (Fix height 393)
-> Content View
-> Main view - (as per Content view of Table view Cell)
-> Title View (0, 0, MainView.width, 57)
-> Video View (0, 57, MainView.width, 200);
-> Description View (0, 257, MainView.width, 136)
Run Code Online (Sandbox Code Playgroud)
编码:
VideoTableCell.h
#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
@interface VideoTableCell : UITableViewCell
@property (strong, nonatomic) IBOutlet UIView *viewForVideo;
@property (strong, nonatomic) IBOutlet UIImageView *imgThumb;
@property (strong, nonatomic) IBOutlet UIButton *btnPlay;
@property (strong, nonatomic) AVPlayerItem* videoItem;
@property (strong, nonatomic) AVPlayer* videoPlayer;
@property (strong, nonatomic) AVPlayerLayer* avLayer;
@end
Run Code Online (Sandbox Code Playgroud)
VideoTableCell.m
#import "VideoTableCell.h"
@implementation VideoTableCell
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
return self;
}
- (void)layoutSubviews
{
[super layoutSubviews];
[self.avLayer setFrame:CGRectMake(self.viewForVideo.frame.origin.x, self.viewForVideo.frame.origin.y, self.viewForVideo.frame.size.width, self.viewForVideo.frame.size.height)];
}
@end
Run Code Online (Sandbox Code Playgroud)
VideoVC.h
#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
@interface VideoVC : UIViewController <UITableViewDataSource, UITableViewDelegate>
@property (strong, nonatomic) IBOutlet UITableView *tblData;
@end
Run Code Online (Sandbox Code Playgroud)
VideoVC.m
#import "VideoVC.h"
#import "VideoTableCell.h"
@interface VideoVC ()
{
NSArray *arrVideo ;
bool isScrolling;
int index;
BOOL fullvisible ;
}
@end
@implementation VideoVC
- (void)viewDidLoad {
[super viewDidLoad];
arrVideo = [[NSArray alloc]initWithObjects:@"http://video/1.mp4",@"http://video/2.mp4", @"http://video/3.mp4", @"http://video/4.mp4", @"http://video/5.mp4", nil];
fullvisible = YES;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return arrVideo.count;
}
-(UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
VideoTableCell *cell = [tableView dequeueReusableCellWithIdentifier:@"VideoTableCell"];
if (cell == nil)
{
cell = [[[NSBundle mainBundle] loadNibNamed:@"VideoTableCell" owner:self options:nil]objectAtIndex:0];
}
int temp = [self getVisibleIndex];
if (temp == indexPath.row && fullvisible)
{
cell.imgThumb.hidden = YES ;
//NSLog(@"fullvisible == 1");
NSURL *url = [NSURL URLWithString:[arrVideo objectAtIndex:indexPath.row]];
cell.videoItem = [AVPlayerItem playerItemWithURL:url];
cell.videoPlayer = [AVPlayer playerWithPlayerItem:cell.videoItem];
cell.avLayer = [AVPlayerLayer playerLayerWithPlayer:cell.videoPlayer];
[cell.avLayer setBackgroundColor:[UIColor whiteColor].CGColor];
// [cell.avLayer setVideoGravity:AVLayerVideoGravityResizeAspectFill];
[cell.contentView.layer addSublayer:cell.avLayer];
[cell.videoPlayer play];
[cell setSelectionStyle:UITableViewCellSelectionStyleNone];
}
else
{
cell.imgThumb.hidden = NO ;
cell.videoPlayer = nil;
[cell.avLayer removeFromSuperlayer];
cell.videoItem = nil;
[cell.videoPlayer pause];
}
return cell ;
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 393 ;
}
-(int)getVisibleIndex
{
for (NSIndexPath *indexPath in _tblData.indexPathsForVisibleRows) {
CGRect cellRect = [_tblData rectForRowAtIndexPath:indexPath];
BOOL isVisible = CGRectContainsRect(_tblData.bounds, cellRect);
if (isVisible)
{
index = (int)indexPath.row ;
}
}
return index ;
}
- (void)scrollViewDidScroll:(UIScrollView *)aScrollView
{
NSArray* cells = _tblData.visibleCells;
for (VideoTableCell* cell in cells)
{
NSIndexPath *path = [_tblData indexPathForCell:cell] ;
index =(int) path.row;
fullvisible = YES;
[_tblData reloadData];
}
}
Run Code Online (Sandbox Code Playgroud)
Jak*_*kub 15
每个UITableViewCell子类都有一个方法,prepareForReuse:所以在你VideoTableCell刚才添加一个方法:
-(void)prepareForReuse {
[super prepareForReuse];
[self.videoPlayer play];
}
Run Code Online (Sandbox Code Playgroud)
并在您的控制器中实现委托方法: - (void)tableView:(UITableView *)tableView didEndDisplayingCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
- (void)tableView:(UITableView *)tableView didEndDisplayingCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
[cell stopVideo];
}
Run Code Online (Sandbox Code Playgroud)
并且stopVideo只是添加[self.videoPlayer pause]或[cell.videoPlayer stop]
在UITableView中尝试这个方法
func tableView(tableView: UITableView, didEndDisplayingCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
// stop video
}
func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
// play video
}
Run Code Online (Sandbox Code Playgroud)
应该帮助你.
如果这不能完全满足您的要求,请尝试覆盖scrollViewDidScroll
更多详细信息