xmartlabs / Eureka

Elegant iOS form builder in Swift
https://eurekacommunity.github.io
MIT License
11.77k stars 1.33k forks source link

[Bug] Mac Catalyst: set the correct deprecated version #2220

Closed miguelangel-dev closed 2 years ago

miguelangel-dev commented 2 years ago

Description

Fix a bug in mac-catalyst because tableView(_:editActionsForRowAt:) has been deprecated in iOS 13, ipadOS 13 and macCatalyst 13.1.

If we do not add the correct deprecation version, it will create an inconsistency between MacOSX SDK and the library. UITableView's headers are explicitly marked deprecated at 13.1, and the library will take 13 (from iOS) - making a premature deprecation in catalyst.

Source: https://developer.apple.com/documentation/uikit/uitableviewdelegate/1614956-tableview