diff --git a/CHANGELOG.md b/CHANGELOG.md index 27bce5c9..e5bc7aa5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ ### Internal +- Remove override of `performBatchUpdates` from our internal `UICollectionView` subclass, it causes warnings for consumers. + # Past Releases # [13.0.0] - 2023-09-06 diff --git a/ListableUI/Sources/ListView/ListView+iOS16.4Workaround.swift b/ListableUI/Sources/ListView/ListView+iOS16.4Workaround.swift index 19b6b28d..ea9b6af6 100644 --- a/ListableUI/Sources/ListView/ListView+iOS16.4Workaround.swift +++ b/ListableUI/Sources/ListView/ListView+iOS16.4Workaround.swift @@ -134,11 +134,6 @@ extension ListView { required init?(coder: NSCoder) { fatalError() } - @available(*, unavailable, message: "Please use performBatchUpdates:changes:completion:.") - override func performBatchUpdates(_ updates: (() -> Void)?, completion: ((Bool) -> Void)? = nil) { - super.performBatchUpdates(updates, completion: completion) - } - func performBatchUpdates( _ updates: @escaping () -> Void, changes : CollectionViewChanges,