mariohahn / MHVideoPhotoGallery

A Photo and Video Gallery

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Video scrubber (slider) cannot change position in iOS 11

UniqueC0de opened this issue · comments

Please help, video scrubber cannot move back and forth, seem to be frozen.
When try to slide, it slide to the next photo or video instead.

@UniqueC0de did you find a solution for this?

you have any Pull request for me?

@mariohanh not pull request yet.

self.moviePlayerToolBarTop = [UIToolbar.alloc initWithFrame:CGRectMake(0, self.navigationController.navigationBar.bounds.size.height+([UIApplication sharedApplication].statusBarHidden?0:20),
 self.view.frame.size.width, 44)];
self.moviePlayerToolBarTop.autoresizingMask =UIViewAutoresizingFlexibleWidth;
self.moviePlayerToolBarTop.alpha =0;
self.moviePlayerToolBarTop.barTintColor = self.viewController.UICustomization.barTintColor;
[self.view addSubview:self.moviePlayerToolBarTop];
[self.moviePlayerToolBarTop layoutIfNeeded];

Add [self.moviePlayerToolBarTop layoutIfNeeded] after adding toolbar.