/SFFullscreenImageDetailViewController

An interactive way to present images full screen

Primary LanguageSwiftMIT LicenseMIT

SFFullscreenImageDetailViewController

An interactive full screen image presentation view controller.

image

Usage

Using SFFullscreenImageDetailViewController couldn't be simpler. Here's a two liner for ya:

let viewController = SFFullscreenImageDetailViewController(imageView: yourImageViewToPresent)
viewController.presentInCurrentKeyWindow()

And the good ol' ObjC:

SFFullscreenImageDetailViewController *viewController = [[SFFullscreenImageDetailViewController alloc] initWithImageView:yourImageViewToPresent];
[viewController presentInCurrentKeyWindow];

Note that you cannot present the view controller in the traditional way using presentViewController(_:animated:completion:)

Installation

Using cocapods:

pod 'SFFullscreenImageDetailViewController'

Carthage

Not yet. But soon.

Source

You can also download and copy the source code into your project. There are no fancy build settings to tweak, just make sure you link against QuartzCore framework.

Contribution

You are more than welcome to drop me a pull request or an issue if you find anything missing and/or would like to see added in the future.

Authors

JanHalozan