IGListKit/Examples/Examples-iOS/IGListKitExamples
Jian Chen c7c8f38638 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
2021-03-18 02:20:45 -07:00
..
Assets.xcassets/AppIcon.appiconset Add 1024 size icon to examples project #trivial 2018-01-29 11:03:11 -08:00
Base.lproj internal diff for PR #209 2016-11-16 12:44:19 -08:00
Extensions Adapts to dark mode for iOS example project. (#1453) 2020-10-03 01:39:08 -07:00
Models Add <IGListDiffable> to isEqualToDiffableObject method argument type 2021-03-18 02:20:45 -07:00
SectionControllers IGListCollectionContext Examples 2021-02-05 09:36:53 -08:00
Storyboard Fix storyboard example app, Fix example build issue 2017-04-17 11:02:36 -07:00
Systems Run lint on IGListKit 2019-12-19 09:34:42 -08:00
ViewControllers Adapts to dark mode for iOS example project. (#1453) 2020-10-03 01:39:08 -07:00
Views Add refined Swift wrapper for IGListSingleSectionController 2021-01-26 07:34:31 -08:00
AppDelegate.swift Adapts to dark mode for iOS example project. (#1453) 2020-10-03 01:39:08 -07:00
Info.plist internal diff for PR #209 2016-11-16 12:44:19 -08:00