IGListKit/Examples/Examples-iOS
Jian Chen 360539f13f Add <IGListDiffable> to isEqualToDiffableObject method argument type
Summary:
This method generated using the remodel generation script does not match with the header file.

 The method declared in .h file is:
    - (BOOL)isEqualToDiffableObject:(nullable id<IGListDiffable>)object;

But implementation generated in .m file is:
    - (BOOL)isEqualToDiffableObject:(nullable id)object
    {
        return [self isEqual:object];
    }

This fix is to generate the implementation as:
    - (BOOL)isEqualToDiffableObject:(nullable id<IGListDiffable>)object
    {
        return [self isEqual:object];
    }

Reviewed By: natestedman

Differential Revision: D27146804

fbshipit-source-id: f7d0d598e97e0ef47948b973ff38d9a319cd4b0d
2025-12-10 17:18:07 +09:00
..
IGListKitExamples Add <IGListDiffable> to isEqualToDiffableObject method argument type 2025-12-10 17:18:07 +09:00
IGListKitExamples-UITests Run lint on IGListKit 2025-12-10 17:18:05 +09:00
IGListKitExamples.xcodeproj Adapts to dark mode for iOS example project. (#1453) 2025-12-10 17:18:07 +09:00
IGListKitExamples.xcworkspace use cocoapods cdn (#1386) 2025-12-10 17:18:05 +09:00
IGListKitMessageExample Run lint on IGListKit 2025-12-10 17:18:05 +09:00
IGListKitTodayExample Run lint on IGListKit 2025-12-10 17:18:05 +09:00
Pods Add refined Swift wrapper for IGListSingleSectionController 2025-12-10 17:18:07 +09:00
LICENSE-examples.md Update MIT license language (#1272) 2025-12-10 17:17:52 +09:00
Podfile Refine dequeueReusableCellOfClass methods for Swift (#1388) 2025-12-10 17:18:05 +09:00
Podfile.lock fix example projects 2025-12-10 17:18:07 +09:00