Fade toolbars, keeping presentation image sharp

Don't fade presentation image until it's in place.

// FREEBIE
pull/1/head
Michael Kirk 7 years ago
parent 10fe10b987
commit 037546a2df

@ -316,9 +316,14 @@ class MediaGalleryViewController: UINavigationController, MediaGalleryDataSource
return
}
detailView.isHidden = true
// At this point our media view should be overlayed perfectly
// by our presentationView. Swapping them out should be imperceptible.
self.presentationView.isHidden = false
// We don't hide the pageViewController entirely - e.g. we want the toolbars to fade in.
pageViewController.currentViewController.view.isHidden = true
detailView.backgroundColor = .clear
self.view.backgroundColor = .clear
self.presentationView.layer.cornerRadius = OWSMessageCellCornerRadius
fromViewController.present(self, animated: false) {
@ -343,12 +348,14 @@ class MediaGalleryViewController: UINavigationController, MediaGalleryDataSource
self.presentationView.layer.cornerRadius = 0
self.presentationView.superview?.layoutIfNeeded()
self.view.backgroundColor = UIColor.white
// fade out content behind the pageViewController
// and behind the presentation view
self.view.backgroundColor = .white
},
completion: { (_: Bool) in
// At this point our presentation view should be overlayed perfectly
// with our media view. Swapping them out should be imperceptible.
detailView.isHidden = false
pageViewController.currentViewController.view.isHidden = false
self.presentationView.isHidden = true
self.view.isUserInteractionEnabled = true
@ -443,7 +450,8 @@ class MediaGalleryViewController: UINavigationController, MediaGalleryDataSource
self.presentingViewController?.dismiss(animated: false, completion: completion)
return
}
detailView.isHidden = true
mediaPageViewController.currentViewController.view.isHidden = true
self.presentationView.isHidden = false
// Move the presentationView back to it's initial position, i.e. where
@ -464,10 +472,7 @@ class MediaGalleryViewController: UINavigationController, MediaGalleryDataSource
// Move back over it's original location
self.presentationView.superview?.layoutIfNeeded()
// In case user has hidden bars, which changes background to black.
mediaPageViewController.view.backgroundColor = .white
mediaPageViewController.view.alpha = 0
self.view.backgroundColor = .clear
detailView.alpha = 0
if changedItems {
self.presentationView.alpha = 0
@ -475,7 +480,12 @@ class MediaGalleryViewController: UINavigationController, MediaGalleryDataSource
self.presentationView.layer.cornerRadius = OWSMessageCellCornerRadius
}
},
completion:nil)
completion: { (_: Bool) in
// In case user has hidden bars, which changes background to black.
// We don't want to change this while detailView is visible, lest
// we obscure out the presentationView
detailView.backgroundColor = .white
})
// This intentionally overlaps the previous animation a bit
UIView.animate(withDuration: 0.1,

@ -38,7 +38,7 @@ class MediaPageViewController: UIPageViewController, UIPageViewControllerDataSou
private var cachedPages: [MediaGalleryItem: MediaDetailViewController] = [:]
private var initialPage: MediaDetailViewController!
private var currentViewController: MediaDetailViewController {
public var currentViewController: MediaDetailViewController {
return viewControllers!.first as! MediaDetailViewController
}
@ -253,7 +253,7 @@ class MediaPageViewController: UIPageViewController, UIPageViewControllerDataSou
UIView.animate(withDuration: 0.1) {
self.currentViewController.setShouldHideToolbars(self.shouldHideToolbars)
self.footerBar.alpha = self.shouldHideToolbars ? 0 : 1
self.footerBar.isHidden = self.shouldHideToolbars
}
}
}

Loading…
Cancel
Save