Skip to content

Instantly share code, notes, and snippets.

@hilen
Last active February 15, 2023 12:08
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save hilen/c20e406440ae95ae9975 to your computer and use it in GitHub Desktop.
Save hilen/c20e406440ae95ae9975 to your computer and use it in GitHub Desktop.
Custom UINavigationItem and custom back item with block . Swift 2.0
//
// UIBarButtonItem+Block.swift
// IllidanSpeed
//
// Created by Hilen on 12/10/15.
// Copyright © 2015 IllidanSpeed. All rights reserved.
//
import Foundation
/// PDF image size : 20px * 20px is perfect one
public typealias ActionHandler = (Void) -> Void
public extension UIViewController {
//Back bar with custom action
func leftBackAction(action: ActionHandler) {
self.leftBackBarButton(mlsAsset.Back_icon.image, action: action)
}
//Back bar with go to previous action
func leftBackToPrevious() {
self.leftBackBarButton(mlsAsset.Back_icon.image, action: nil)
}
//back action
private func leftBackBarButton(backImage: UIImage, action: ActionHandler!) {
guard self.navigationController != nil else {
assert(false, "Your target ViewController doesn't have a UINavigationController")
return
}
let button: UIButton = UIButton(type: UIButtonType.Custom)
button.setImage(backImage, forState: .Normal)
button.frame = CGRectMake(0, 0, 40, 30)
button.imageView!.contentMode = .ScaleAspectFit;
button.contentHorizontalAlignment = .Left
button.ngl_addAction(forControlEvents: .TouchUpInside, withCallback: {[weak self] in
//If custom action ,call back
if action != nil {
action()
return
}
if self!.navigationController!.viewControllers.count > 1 {
self!.navigationController?.popViewControllerAnimated(true)
} else if (self!.presentingViewController != nil) {
self!.dismissViewControllerAnimated(true, completion: nil)
}
})
let barButton = UIBarButtonItem(customView: button)
let gapItem = UIBarButtonItem(barButtonSystemItem: .FixedSpace, target: nil, action: nil)
gapItem.width = -7 //fix the space
self.navigationItem.leftBarButtonItems = [gapItem, barButton]
}
}
public extension UINavigationItem {
//left bar
func leftButtonAction(image: UIImage, action:ActionHandler) {
let button: UIButton = UIButton(type: UIButtonType.Custom)
button.setImage(image, forState: .Normal)
button.frame = CGRectMake(0, 0, 40, 30)
button.imageView!.contentMode = .ScaleAspectFit;
button.contentHorizontalAlignment = .Left
button.ngl_addAction(forControlEvents: .TouchUpInside, withCallback: {
action()
})
let barButton = UIBarButtonItem(customView: button)
let gapItem = UIBarButtonItem(barButtonSystemItem: .FixedSpace, target: nil, action: nil)
gapItem.width = -7 //fix the space
self.leftBarButtonItems = [gapItem, barButton]
}
//right bar
func rightButtonAction(image: UIImage, action:ActionHandler) {
let button: UIButton = UIButton(type: UIButtonType.Custom)
button.setImage(image, forState: .Normal)
button.frame = CGRectMake(0, 0, 40, 30)
button.imageView!.contentMode = .ScaleAspectFit;
button.contentHorizontalAlignment = .Right
button.ngl_addAction(forControlEvents: .TouchUpInside, withCallback: {
action()
})
let barButton = UIBarButtonItem(customView: button)
let gapItem = UIBarButtonItem(barButtonSystemItem: .FixedSpace, target: nil, action: nil)
gapItem.width = -7 //fix the space
self.rightBarButtonItems = [gapItem, barButton]
}
}
/*
Block of UIControl
*/
public class ClosureWrapper : NSObject {
let _callback : Void -> Void
init(callback : Void -> Void) {
_callback = callback
}
public func invoke() {
_callback()
}
}
var AssociatedClosure: UInt8 = 0
extension UIControl {
private func ngl_addAction(forControlEvents events: UIControlEvents, withCallback callback: Void -> Void) {
let wrapper = ClosureWrapper(callback: callback)
addTarget(wrapper, action:"invoke", forControlEvents: events)
objc_setAssociatedObject(self, &AssociatedClosure, wrapper, objc_AssociationPolicy.OBJC_ASSOCIATION_RETAIN_NONATOMIC)
}
}
Usage
1: back to previous
self.leftBackToPrevious()
2. custom back action
self.leftBackAction { (Void) -> Void in
print("go")
}
3: custom right navigationItem
self.navigationItem.rightButtonAction(UIImage(named: "setting_icon"), action: { (Void) -> Void in
print("go to setting")
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment