Reverting to v2.4.4 works fine.
I think the issue is that in v2.4.5 you moved the code to update tokens in RefreshView.swift from func willMove(toWindow newWindow: UIWindow?) to func willMove(toSuperview newSuperview: UIView?), but the latter isn't called when switching between tabs, so indicators are not updated properly.
A possible solution is to call the same code in both functions, but there should be a better one.
Hello!
Latest commit broke indicator views when switching between tabs, see here:
Sample project can be downloaded here.
Reverting to v2.4.4 works fine. I think the issue is that in v2.4.5 you moved the code to update tokens in
RefreshView.swift
fromfunc willMove(toWindow newWindow: UIWindow?)
tofunc willMove(toSuperview newSuperview: UIView?)
, but the latter isn't called when switching between tabs, so indicators are not updated properly.A possible solution is to call the same code in both functions, but there should be a better one.
Thanks for your help!