SwiftLint icon indicating copy to clipboard operation
SwiftLint copied to clipboard

Falsepositive overridden_super_call

Open NikKovIos opened this issue 1 year ago • 0 comments

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

NikKovIos avatar Jul 07 '24 10:07 NikKovIos