From 52d0eb621648960122d6007e438fa94e5c9e8663 Mon Sep 17 00:00:00 2001 From: Chuy Date: Fri, 22 Jun 2018 14:05:38 -0500 Subject: [PATCH] - 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) }