Releases: Hotel-Reservation-Service/HRSCustomErrorHandling
Release v0.4.0
The localizedDescription
of an NSError
will now be used as the alert's title by default. This is a breaking change from the previous versions. Make sure to use the NSLocalizedDescriptionKey
in your custom errors instead of the NSLocalizedFailureReasonErrorKey
. This change was made to be consistent with the OS X error presentation.
Release v0.3.0
Errors will now be queued to prevent several error messages from popping up at the same time. Also multiple error messages of the same type are coalesced and only displayed once.
Release v0.2.0
Introduce a new api to present view controller based errors. This api is especially made for overriding and displaying custom error dialogs, such as TSMessages. The default implementation looks the same as the regular api but is only shown if the passed-in view controller is visible.
Release v0.1.2 - CI compatibility fix
There are no changes to the source code in this release. Only the Podfile.lock of the example project has been updated.
Release v0.1.1
- Minor fixes to support travis-ci as continuous integration server
- Reformat the documentation comments to support cocoadocs parsing