-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for more modern (non-deprecated) table view swipe API
UITableViewRowAction and it’s associated methods have been deprecated in favor of the new UISwipeActionsConfiguration object which can be configured on the trailing and leading edges of a table view cell. This API is available on iOS 11.0 onwards. The cleanest way to support this is to bump the deployment target to iOS 11.
- Loading branch information
Showing
3 changed files
with
38 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = 'Static' | ||
spec.version = '4.0.2' | ||
spec.version = '4.1.0' | ||
spec.summary = 'Simple static table views for iOS in Swift.' | ||
spec.description = 'Static provides simple static table views for iOS in Swift.' | ||
spec.homepage = 'https://github.com/venmo/static' | ||
spec.license = { type: 'MIT', file: 'LICENSE' } | ||
spec.source = { git: 'https://github.com/venmo/Static.git', tag: "v#{spec.version}" } | ||
spec.author = { 'Venmo' => '[email protected]', 'Sam Soffes' => '[email protected]' } | ||
|
||
spec.platform = :ios, '8.0' | ||
spec.ios.deployment_target = '11.0' | ||
spec.frameworks = 'UIKit' | ||
spec.source_files = 'Static/*.{swift,h}' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters