From 52d0eb621648960122d6007e438fa94e5c9e8663 Mon Sep 17 00:00:00 2001 From: Chuy Date: Fri, 22 Jun 2018 14:05:38 -0500 Subject: [PATCH 1/2] - Fix color background refreshView --- PullToMakeSoup/PullToMakeSoup/PullToMakeSoup.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/PullToMakeSoup/PullToMakeSoup/PullToMakeSoup.swift b/PullToMakeSoup/PullToMakeSoup/PullToMakeSoup.swift index c2bb705..9780a46 100644 --- a/PullToMakeSoup/PullToMakeSoup/PullToMakeSoup.swift +++ b/PullToMakeSoup/PullToMakeSoup/PullToMakeSoup.swift @@ -14,6 +14,7 @@ open class PullToMakeSoup: PullToRefresh { public convenience init(at position: Position = .top) { let refreshView = Bundle(for: type(of: self)).loadNibNamed("SoupView", owner: nil, options: nil)!.first as! SoupView + refreshView.backgroundColor = UIColor.clear let animator = SoupAnimator(refreshView: refreshView) self.init(refreshView: refreshView, animator: animator, height : refreshView.frame.size.height, position : position) } From 9dc39e69f213ade493dbc0dbd37c41dffb31f57c Mon Sep 17 00:00:00 2001 From: Chuy Date: Fri, 22 Jun 2018 15:51:05 -0500 Subject: [PATCH 2/2] - Update pull to refresher pod --- PullToMakeSoup.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PullToMakeSoup.podspec b/PullToMakeSoup.podspec index 8bb678f..ff1f7fd 100644 --- a/PullToMakeSoup.podspec +++ b/PullToMakeSoup.podspec @@ -18,6 +18,6 @@ Pod::Spec.new do |s| s.requires_arc = true s.frameworks = 'CoreGraphics', 'QuartzCore' - s.dependency 'PullToRefresher', '~> 2.0' + s.dependency 'PullToRefresher' end