mirror of
https://github.com/Instagram/IGListKit
synced 2026-04-26 07:57:19 +00:00
Summary: Lets add swipe to delete. Differential Revision: D52262785 fbshipit-source-id: b95cdee116374c561967dd585d02110a4d877e16
25 lines
536 B
Swift
25 lines
536 B
Swift
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
import IGListKit
|
|
import Foundation
|
|
|
|
final class SwipeActionSection: NSObject {
|
|
|
|
}
|
|
|
|
extension SwipeActionSection: ListDiffable {
|
|
|
|
func diffIdentifier() -> NSObjectProtocol {
|
|
return self
|
|
}
|
|
|
|
func isEqual(toDiffableObject object: ListDiffable?) -> Bool {
|
|
return self === object ? true : self.isEqual(object)
|
|
}
|
|
|
|
}
|