Skip to content

Commit

Permalink
Make imageView.reactive.imageSignal public
Browse files Browse the repository at this point in the history
  • Loading branch information
olejnjak committed Sep 11, 2018
1 parent 4117fb7 commit 45fa8ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ACKReactiveExtensions/UIKit/UIImageViewExtensions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import ReactiveSwift
import enum Result.NoError

extension Reactive where Base: UIImageView {
var imageSignal: Signal<UIImage?, NoError> {
public var imageSignal: Signal<UIImage?, NoError> {
return signal(forKeyPath: "image").map { $0 as? UIImage }
}
}

0 comments on commit 45fa8ce

Please sign in to comment.