mariohahn / MHVideoPhotoGallery

A Photo and Video Gallery
MIT License
1.96k stars 352 forks source link

Video scrubber (slider) cannot change position in iOS 11 #157

Open UniqueC0de opened 6 years ago

UniqueC0de commented 6 years ago

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.

mythodeia commented 6 years ago

@UniqueC0de did you find a solution for this?

mariohahn commented 6 years ago

you have any Pull request for me?

UniqueC0de commented 6 years ago

@mariohanh not pull request yet.

HardikKardani commented 6 years ago
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.