Skip to content
New issue

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

Falsepositive overridden_super_call #5655

Open
NikKovIos opened this issue Jul 7, 2024 · 0 comments
Open

Falsepositive overridden_super_call #5655

NikKovIos opened this issue Jul 7, 2024 · 0 comments
Labels
bug Unexpected and reproducible misbehavior.

Comments

@NikKovIos
Copy link

image
    @IBOutlet private weak var contextView: UIView!
    override func viewWillAppear(_ animated: Bool) {
        if animated {
            contextView.transform = CGAffineTransform(translationX: 0, y: contextView.bounds.height)

            UIView.transition(with: contextView,
                              duration: 0.25,
                              options: .curveEaseInOut,
                              animations: {
                self.contextView.transform = .identity
            },
                              completion: { _ in
                super.viewWillAppear(true)
            })
        } else {
            super.viewWillAppear(false)
        }
    }

Version 0.55.1

@SimplyDanny SimplyDanny added the bug Unexpected and reproducible misbehavior. label Jul 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Unexpected and reproducible misbehavior.
Projects
None yet
Development

No branches or pull requests

2 participants