Skip to content

Instantly share code, notes, and snippets.

@Marcocanc
Last active April 5, 2017 08:50
Show Gist options
  • Save Marcocanc/ba5bf2a1c39fc4a362bef534c6295df5 to your computer and use it in GitHub Desktop.
Save Marcocanc/ba5bf2a1c39fc4a362bef534c6295df5 to your computer and use it in GitHub Desktop.
UINavigationItem+Reactive.swift
//
// UINavigationItem+Reactive.swift
// ReactiveQuotes
//
// Created by Marco Cancellieri on 14/01/2017.
// Copyright © 2017 Marco Cancellieri. All rights reserved.
//
import UIKit
import ReactiveSwift
extension Reactive where Base: UINavigationItem {
/// Sets the title of bar item.
public var title: BindingTarget<String?> {
return makeBindingTarget { $0.title = $1 }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment