Skip to content
This repository has been archived by the owner on Jun 30, 2021. It is now read-only.

Commit

Permalink
Fix non public function in delegate conformance
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Padron committed Jul 14, 2017
1 parent ca67239 commit 2670309
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# UIEmptyState CHANGELOG

## Version 1.0.1

- Fix access modifier in default implementation of `emptyStateViewWillHide(view: UIView)`

## Version 1.0.0 - Stable Release

- Add Swift version check to allow support for Swift 3 --> Swift 4.
Expand Down
2 changes: 1 addition & 1 deletion UIEmptyState.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Pod::Spec.new do |s|

s.name = "UIEmptyState"
s.version = "1.0.0"
s.version = "1.0.1"
s.summary = "An empty state control to give visually appealing context when building iOS applications."
s.description = <<-DESC
Empty state control which gives context with either a message, image, and buttons to the user when ever there is a reason the state is empty.
Expand Down
2 changes: 1 addition & 1 deletion UIEmptyState/UIEmptyStateDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ extension UIEmptyStateDelegate where Self: UIViewController {
/// Default empty implementation of `emptyStateViewDidShow`
public func emptyStateViewDidShow(view: UIView) { }
/// Default empty implementation of `emptyStateViewWillHide`
func emptyStateViewWillHide(view: UIView) { }
public func emptyStateViewWillHide(view: UIView) { }
/// Default empty implementation of `emptyStateButtonWasTapped`
public func emptyStatebuttonWasTapped(button: UIButton) { }
/// Default empty implementation of `emptyStateViewWasTapped`
Expand Down

0 comments on commit 2670309

Please sign in to comment.