PullToRefreshSwift icon indicating copy to clipboard operation
PullToRefreshSwift copied to clipboard

iOS Simple Cool PullToRefresh Library. It is written in pure swift.

Results 26 PullToRefreshSwift issues
Sort by recently updated
recently updated
newest added

The refreshCompletion block is getting called while the view is loading. After debugging I've found that this condition is being executed while the view is loading / appearing: ``` public...

I don't know if this is related or the same as #34, but instead of getting a crash, I am getting a runtime issue saying that > Simultaneous accesses to...

Add void argument in refreshCompletion: ((Void) -> Void)? and turn var kvoContext private and static for resolve conflicts with xcode x.

The following line of code in **PullToRefreshConst.swift** file is causing compile time error when Swift 4.1 is being used as per Build Settings: `self.refreshCompletion?()` > Missing argument for parameter #1...

This PR fixes warnings that appeared on newer versions of Swift and fixes bug file on issue #34

When building with Xcode 9.1/Swift 4, our production app crashes on load with the following message: `Thread 1: Simultaneous accesses to 0x10391fbb0, but modification requires exclusive access` Initial call where...