Skip to content

Commit

Permalink
Merge pull request #69 from stephenwoodford/contentconfiguration-warn…
Browse files Browse the repository at this point in the history
…ings

Remove deprecation warnings for using contentConfiguration before iOS 16 since its used for UIHostingConfiguration
  • Loading branch information
shaps80 authored Jan 5, 2024
2 parents 2f138ee + b26d875 commit 72f75c6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ extension UICollectionViewCell {
}
}

@available(iOS, deprecated: 14)
@available(tvOS, deprecated: 14)
@available(iOS, deprecated: 16)
@available(tvOS, deprecated: 16)
@available(macOS, unavailable)
@available(watchOS, unavailable)
extension Backport where Wrapped: UICollectionViewCell {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ extension UITableViewCell {
}
}

@available(iOS, deprecated: 14)
@available(tvOS, deprecated: 14)
@available(iOS, deprecated: 16)
@available(tvOS, deprecated: 16)
@available(macOS, unavailable)
@available(watchOS, unavailable)
extension Backport where Wrapped: UITableViewCell {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import SwiftUI
/// default styling and content for a content view. The content configuration encapsulates
/// all of the supported properties and behaviors for content view customization.
/// You use the configuration to create the content view.
@available(iOS, deprecated: 14)
@available(tvOS, deprecated: 14)
@available(iOS, deprecated: 16)
@available(tvOS, deprecated: 16)
@available(macOS, unavailable)
@available(watchOS, unavailable)
public protocol BackportUIContentConfiguration {
Expand Down

0 comments on commit 72f75c6

Please sign in to comment.