TLDR
Is there a way to be notified before a UIAlert
is going to be presented. Is there a viewDidLoad
/viewWillLoad
type function that can be called in a ViewController
either before or after an alert pops up?
My Problem
My View Controller
is receiving an alert from a method in my app delegate. My View Controller
calls a method in the app delegate which can then send a UIAlert
if there was a problem. While this seems like bad design, I can't change it. I need some type of way of knowing that an alert showed up.