ErrorKit
ErrorKit copied to clipboard
Use of UIAlertController instead of UIAlertView
As per Apple doc, it looks like UIAlertView, UIActionSheet are deprecated in iOS 8. (Note that UIAlertViewDelegate, UIActionSheetDelegate are also deprecated.)
Could ErrorKit be updated to use UIAlertController, instead, for iOS >= 8 ?
Thanks.
ErrorKit can be updated for iOS 8 😃 I will look into it as soon as I can.
In the meantime, if you don't want to use deprecated APIs (bear in mind that UIAlertView hasn't been obsoleted yet and it is still available) you can simply override - [UIApplication presentError:delegate:didPresentSelector:contextInfo:] and - [UIApplication presentError:] methods and present errors using UIAlertController.