CocoaPods trunk is moving to be read-only. Read more on the blog, there are 6 months to go.

Nemo 1.1.1

Nemo 1.1.1

TestsTested
LangLanguage SwiftSwift
License Apache 2
ReleasedLast Release Jan 2017
SwiftSwift Version 3.0
SPMSupports SPM

Maintained by Jaehong Kang.



Nemo 1.1.1

  • By
  • Jaehong Kang

Nemo

Nemo is a photos menu framework for iOS

Example

Installation

Manually

  1. Drag Nemo.xcodeproj file into you project
  2. Add Nemo.framework into Project Setting’s General->Embedded Binaries

Usage

Swift

  • Import Nemo framework by:
import Nemo
  • Init PhotosMenuController by:
let controller = PhotosMenuController()
  • Present it by UIViewController’s present view controller method:
self.presentViewController(controller, animated: true, completion: nil)

Objective-C

  • Import Nemo framework by:
@import Nemo;
// or
#import <Nemo/Nemo.h>
  • Init PhotosMenuController by:
NMPhotosMenuController *controller = [[NMPhotosMenuController alloc] init];
  • Present it by UIViewController’s present view controller method:
[self presentViewController:controller animated:YES completion:nil];

Or you can simply check NemoExample on Nemo.xcodeproj

License

Read LICENSE for more information.