mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-18 06:48:22 +00:00
Summary: Replaces #243 --------------------- - Clean up GridLayout + docs - Remove GridLayout scroll direction, not used/supported? - Fix some file target membership issues - Add GridLayout to umbrella header - "Sort by name" on xcode project directories - crtl-I auto format in xcode - re-gen docs Closes https://github.com/Instagram/IGListKit/pull/246 Differential Revision: D4219028 Pulled By: jessesquires fbshipit-source-id: 02d6d284c47dd4301549d9094727054156d596aa
19 lines
528 B
Objective-C
19 lines
528 B
Objective-C
/**
|
|
* Copyright (c) 2016-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <IGListKit/IGListDiffable.h>
|
|
|
|
/**
|
|
This category provides default `IGListDiffable` conformance for `NSString`.
|
|
*/
|
|
@interface NSString (IGListDiffable) <IGListDiffable>
|
|
|
|
@end
|