You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Its crashing for me on PullToRefresh.swift line 68 refreshControl.beginRefreshing()Thread 1: EXC_BAD_ACCESS (code=1, address=0x20).
My app uses a navigationview and when I navigate to a view that uses a scrollview with this library (so its a navigation view with a scrollview inside of it) it sometimes crashes with that error.
As soon as the view becomes visible it starts loading data and the isShowing binding turns to true (I know it still can't be triggered programmatically).
Please tell me what else would you need to diagnose this issue.
The text was updated successfully, but these errors were encountered:
Same thing was happening to me because when onValueChanged() was called from PullToRefresh's Coordinator I was updating the binding value myself and the code ran into an infinite loop. So the solution for me was to remove line 31
Its crashing for me on
PullToRefresh.swift
line 68refreshControl.beginRefreshing()
Thread 1: EXC_BAD_ACCESS (code=1, address=0x20)
.My app uses a navigationview and when I navigate to a view that uses a scrollview with this library (so its a navigation view with a scrollview inside of it) it sometimes crashes with that error.
As soon as the view becomes visible it starts loading data and the
isShowing
binding turns to true (I know it still can't be triggered programmatically).Please tell me what else would you need to diagnose this issue.
The text was updated successfully, but these errors were encountered: