Skip to content

Commit 2215ae1

Browse files
author
Patrik Potoček
committedNov 6, 2019
XCode 11 and swift 5 update
1 parent a2ca91a commit 2215ae1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎ESPullToRefreshExample/ESPullToRefreshExample/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>$(CURRENT_PROJECT_VERSION)</string>
22+
<string>1</string>
2323
<key>LSRequiresIPhoneOS</key>
2424
<true/>
2525
<key>UILaunchStoryboardName</key>

‎Sources/Animator/ESRefreshFooterAnimator.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ open class ESRefreshFooterAnimator: UIView, ESRefreshProtocol, ESRefreshAnimator
4747
}()
4848

4949
fileprivate let indicatorView: UIActivityIndicatorView = {
50-
let indicatorView = UIActivityIndicatorView.init(activityIndicatorStyle: .gray)
50+
let indicatorView = UIActivityIndicatorView.init(style: .gray)
5151
indicatorView.isHidden = true
5252
return indicatorView
5353
}()

‎Sources/Animator/ESRefreshHeaderAnimator.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ open class ESRefreshHeaderAnimator: UIView, ESRefreshProtocol, ESRefreshAnimator
6666
}()
6767

6868
fileprivate let indicatorView: UIActivityIndicatorView = {
69-
let indicatorView = UIActivityIndicatorView.init(activityIndicatorStyle: .gray)
69+
let indicatorView = UIActivityIndicatorView.init(style: .gray)
7070
indicatorView.isHidden = true
7171
return indicatorView
7272
}()

0 commit comments

Comments
 (0)
Please sign in to comment.