Skip to content

Commit

Permalink
Merge branch 'release/1.0.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Ricardo Santos committed Oct 13, 2017
2 parents 6050fe2 + e21e1a7 commit 24da734
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion FazeKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FazeKit'
s.version = '1.0.2'
s.version = '1.0.3'
s.summary = 'A collection of helper functions and extensions for Swift iOS apps'
s.description = 'A collection of extensions and convenience functions on Foundation, UIKit and other Cocoa Frameworks, built in Swift for iOS development'
s.homepage = 'https://github.com/NextFaze/FazeKit'
Expand Down
6 changes: 4 additions & 2 deletions FazeKit/Classes/UIResponderAdditions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@

import UIKit

extension UIResponder {
static func resignAnyFirstResponder() {
public extension UIResponder {

public static func resignAnyFirstResponder() {
UIApplication.shared.sendAction(#selector(UIResponder.resignFirstResponder), to: nil, from: nil, for: nil)
}

}

0 comments on commit 24da734

Please sign in to comment.