We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 the issue happens is
tableView.addPullRefresh(options:refreshCompletion), which then cascades down to the method mentioned above.
tableView.addPullRefresh(options:refreshCompletion)
Possibly caused by something similar to this: Yalantis/PullToRefresh#72
The text was updated successfully, but these errors were encountered:
[BUG FIX] Simultaneous access to memory due to KVO
2d1387e
This commit fix issue dekatotoro#34, an issue that was previously fixed by PR #73 but reappeared because of Swift-4's improved runtime checks, pointed out by Michael Brown in his blog. http://michael-brown.net/2017/swift-and-kvo-context-variables/ This buf was already fixed by PR 72, however
No branches or pull requests
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 the issue happens is
tableView.addPullRefresh(options:refreshCompletion)
, which then cascades down to the method mentioned above.Possibly caused by something similar to this:
Yalantis/PullToRefresh#72
The text was updated successfully, but these errors were encountered: