You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 19, 2021. It is now read-only.
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.
The text was updated successfully, but these errors were encountered:
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.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
As per Apple doc, it looks like
UIAlertView
,UIActionSheet
are deprecated in iOS 8. (Note thatUIAlertViewDelegate
,UIActionSheetDelegate
are also deprecated.)Could ErrorKit be updated to use
UIAlertController
, instead, for iOS >= 8 ?Thanks.
The text was updated successfully, but these errors were encountered: