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
updateNavbarAlpha hammers the alphas of all subviews of everything on the toolbar, including some third party libraries we use that do special things with their toolbar buttons.
the easiest solution would be to make this function a public function instead of nested function inside a private function, so we could just override the behavior with our own logic.
otherwise adding a property ScrollingNavigationController to exclude button subviews by name or class would be needed.
The text was updated successfully, but these errors were encountered:
On the same note, is it necessary to recursively process all subviews? I would think if you set alpha on parent view, it'll just hide or show all its subviews.
The particular issue I'm having is a simple text field with placeholder in title view. This recursive processing on view load sets alpha to 1 on the placeholder and it appears black instead of light gray. I just ended up commenting out that line for the time being.
updateNavbarAlpha hammers the alphas of all subviews of everything on the toolbar, including some third party libraries we use that do special things with their toolbar buttons.
the specific problem is the nested function:
the easiest solution would be to make this function a public function instead of nested function inside a private function, so we could just override the behavior with our own logic.
otherwise adding a property ScrollingNavigationController to exclude button subviews by name or class would be needed.
The text was updated successfully, but these errors were encountered: