Go to file
KazukiTanaka 4536b5a2d9 change README 2017-05-02 17:17:40 +09:00
Demo rename AssetType to Asset 2016-10-02 23:13:57 +09:00
Images add logo 2016-07-19 21:32:30 +09:00
NohanaImagePicker fix filename 2016-11-26 15:34:15 +09:00
NohanaImagePicker.xcodeproj fix filename 2016-11-26 15:34:15 +09:00
.gitignore add project 2016-04-15 17:31:31 +09:00
.swift-version add .swift-version file 2016-09-23 17:27:07 +09:00
LICENSE fix license 2016-08-08 12:28:15 +09:00
NohanaImagePicker.podspec update podspec 2016-10-02 23:29:37 +09:00
README.md change README 2017-05-02 17:17:40 +09:00

README.md

Description

Multiple image picker for iOS app.

NohanaImagePicker enables your app to pick images from multiple album, and the moment.

Usage

import UIKit
import Photos
import NohanaImagePicker
class MyViewController: UIViewController {
    let picker = NohanaImagePickerController()

    override func viewDidAppear(animated: Bool) {
        super.viewDidAppear(animated)
        self.picker.delegate = self
        present(self.picker, animated: true, completion: nil)
    }
}

extension MyViewController: NohanaImagePickerControllerDelegate {

    func nohanaImagePickerDidCancel(_ picker: NohanaImagePickerController) {
        print("🐷Canceled🙅")
        picker.dismiss(animated: true, completion: nil)
    }

    func nohanaImagePicker(_ picker: NohanaImagePickerController, didFinishPickingPhotoKitAssets pickedAssts :[PHAsset]) {
        print("🐷Completed🙆\n\tpickedAssets = \(pickedAssts)")
        picker.dismiss(animated: true, completion: nil)
    }
}

Customize

let picker = NohanaImagePickerController()

// Set the maximum number of selectable images
picker.maximumNumberOfSelection = 21

// Set the cell size
picker.numberOfColumnsInPortrait = 2
picker.numberOfColumnsInLandscape = 3

// Show Moment
picker.shouldShowMoment = true

// Show empty albums
picker.shouldShowMoment = shouldShowEmptyAlbum = true

// Hide toolbar
picker.shouldShowEmptyAlbum = true

// Disable to pick asset
picker.canPickAsset = { (asset:Asset) -> Bool in
    return false
}

// Color
ColorConfig.backgroundColor = UIColor.redColor()

Requirements

  • Swift 2.2 later
  • iOS 8.0 later

Installation

Carthage (preferable)

Use Carthage.

  • Add github "nohana/NohanaImagePicker" to your Cartfile.
    • If you want to use Swift2.3, add github "nohana/NohanaImagePicker", "0.6.1" instead.
    • If you want to use Swift2.2, add github "nohana/NohanaImagePicker", "0.5.0" instead.
  • Run carthage update.

Framework with CocoaPods

Use CocoaPods.

  • Try; pod try NohanaImagePicker

  • Add the followings to your Podfile:

use_frameworks!
pod "NohanaImagePicker"
  • If you want to use Swift2.3 write pod "NohanaImagePicker", "0.6.1" instead of pod "NohanaImagePicker".

  • Run pod install.

License

This library is licensed under Apache License v2.

Copyright (C) 2016 nohana, Inc. All rights reserved.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied. See the License for the
specific language governing permissions and limitations under the License.