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

SPAlert hiding or dismissing instantly in some views. Maybe due to a UITextView #11

Closed
bebrws opened this issue Oct 30, 2019 · 1 comment
Labels
wait more Further information is requested

Comments

@bebrws
Copy link

bebrws commented Oct 30, 2019

A workaround that help me was:

    self.perform(#selector(self.showSaveCompleted), with: nil, afterDelay: 1)
    

    @objc func showSaveCompleted() {
        DispatchQueue.main.async {
        
            let alertView = SPAlertView(title: "Title.", message: "Message.", preset: SPAlertPreset.done)
            alertView.duration = 3
            alertView.dismissByTap = true
            alertView.present()
        }
    }
    ```
@ivanvorobei
Copy link
Member

Good day!
You can create example project?

@ivanvorobei ivanvorobei added the wait more Further information is requested label Nov 18, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
wait more Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants