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
Describe the bug
Some navigation bar elements(UIBarButtonItems and UINavigationitems with custom views) flicker when navigation bar gets hidden interactively.
UIBarButtonItem
UINavigationitem
To Reproduce
The issues manifests quite easily, for example when setting up an item with custom image view:
let imageView = UIImageView(image: UIImage(named: "AppIcon")) navigationItem.rightBarButtonItem = UIBarButtonItem(customView: imageView)
or event just an empty view
let titleView = UIView(frame: CGRect(x: 0, y: 0, width: 200, height: 30)) titleView.backgroundColor = .white navigationItem.titleView = titleView
Here's a sample project that demonstrates this: Sample.zip
Expected behavior Would be nice if it wouldn't flicker.
The text was updated successfully, but these errors were encountered:
Related issues - #325, #257.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Some navigation bar elements(
UIBarButtonItem
s andUINavigationitem
s with custom views) flicker when navigation bar gets hidden interactively.To Reproduce
The issues manifests quite easily, for example when setting up an item with custom image view:
or event just an empty view
Here's a sample project that demonstrates this:
Sample.zip
Expected behavior
Would be nice if it wouldn't flicker.
The text was updated successfully, but these errors were encountered: