Skip to content

A modern, header-only C++ library for MessagePack serialization and deserialization. msgpack.org[c++23]

License

Notifications You must be signed in to change notification settings

letseCates/msgpack23

Repository files navigation

streamline_header

msgpack23

Version License Platform

Usage

How to present SHViewController

let imageToBeFiltered = UIImage(named: "targetImage")
let vc = SHViewController(image: imageToBeFiltered)
vc.delegate = self
self.present(vc, animated:true, completion: nil)

SHViewControllerDelegate methods

extension ViewController: SHViewControllerDelegate {
    func shViewControllerImageDidFilter(image: UIImage) {
      // Filtered image will be returned here.
    }

    func shViewControllerDidCancel() {
      // This will be called when you cancel filtering the image.
    }
}

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Demo video

streamline animation

Requirements

  • Swift3
  • iOS 8.3+

Installation

streamline is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "streamline"

Install manually

It requires a few things. Please follow the steps.

Author

makomori, [email protected]

License

streamline is available under the MIT license. See the LICENSE file for more info.

About

A modern, header-only C++ library for MessagePack serialization and deserialization. msgpack.org[c++23]

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published