I’m looking for a way, to automatically dismiss an alert view after some time or after a task is done.
Is there a possibility? (or another way to show a message for some time?)
I’m looking for a way, to automatically dismiss an alert view after some time
Share
You can call the
-dismissWithClickedButtonIndex:animated:method to dismiss the alert view.To dismiss it automatically, create an NSInvocation and then use
-performSelector:withObject:afterDelay:to-invokeit.