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
{{ message }}
This repository has been archived by the owner on Nov 13, 2020. It is now read-only.
In RefreshUIView.swift, replace lines 24-26 with the following
guard let tableViewWrapper = target else { return }
guard let tableView = tableViewWrapper.subviews.first as? UITableView else { return }
There appears to be one less layer in the view hierarchy now. Of course, this is a fragile fix as it's subject to breaking in a similar way in the future. A safer bet might just be to loop over the subviews going deeper into the hierarchy until a UITableView is found rather than hard coding the hierarchy.
No description provided.
The text was updated successfully, but these errors were encountered: