PSTAlertController
PSTAlertController copied to clipboard
API similar to UIAlertController, backwards compatible to iOS 7. Will use the new shiny API when you run iOS 8.
We find that PSTAlertController will cause memory leak due to hold the PSTAlertContoller object by the related ViewController or the front most ViewController through objc_setAssociatedObject. Maybe reset it when the...
the alert can't be showed when the frontmost viewController is begin dissmissed
Two other code paths in showWithSender:controller:animated:completion: weren't calling the completion block. Here's a fix.
Both UIActionSheet and UIAlertView support delegate notifications for when the alert will be presented, and was presented. In addition, UIAlertController has support. Add them in, in the same form that...