When using this library from a Swift 3 target, I'm getting warnings for deprecated methods on show(animated:) and hide(animated:).
'show' is deprecated. Use showAnimated: instead.'hide' is deprecated. Use hideAnimated: instead.
This is because Swift 3 converts the syntax for the Objective-C method showAnimated: and hideAnimated: to show(animated:) and hide(animated:) respectively.
In Swift 3, the deprecated method syntax is exactly the same as the new method's syntax. I'm hoping we can get a version where the deprecated methods are removed, or something is changed to remove these warnings soon. Having a bunch of warnings in my project is driving me crazy!
When using this library from a Swift 3 target, I'm getting warnings for deprecated methods on
show(animated:)
andhide(animated:)
.'show' is deprecated. Use showAnimated: instead.
'hide' is deprecated. Use hideAnimated: instead.
This is because Swift 3 converts the syntax for the Objective-C method
showAnimated:
andhideAnimated:
toshow(animated:)
andhide(animated:)
respectively.In Swift 3, the deprecated method syntax is exactly the same as the new method's syntax. I'm hoping we can get a version where the deprecated methods are removed, or something is changed to remove these warnings soon. Having a bunch of warnings in my project is driving me crazy!
Thanks