mirror of
https://github.com/TextureGroup/Texture.git
synced 2026-04-07 19:17:39 +00:00
- In IGListDiff is no longer part of IGListKit as of 4.0. It has its own podspec now. After bumping our IGListKit dependency of our subspec, we got an "Undefined symbol: _IGListDiff" error which breaks podspec linting CI job (as well as some of our clients as reported in #1749). - To fix it, we can either remove the IGListDiff dependency since it's used once in the entire project, or link to IGListDiffKit. I opt for the latter because I imagine many IGListKit users would have IGListDiffKit anyway so we can still take advantage of it (it's faster than our built in diffing algorithm). Plus, it's not a big dependency.
16 lines
370 B
Objective-C
16 lines
370 B
Objective-C
//
|
|
// ASLayout+IGListDiffKit.h
|
|
// Texture
|
|
//
|
|
// Copyright (c) Pinterest, Inc. All rights reserved.
|
|
// Licensed under Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
|
|
#if AS_IG_LIST_DIFF_KIT
|
|
#import <AsyncDisplayKit/ASLayout.h>
|
|
#import <IGListDiffKit/IGListDiffKit.h>
|
|
|
|
@interface ASLayout(IGListDiffKit) <IGListDiffable>
|
|
@end
|
|
#endif // AS_IG_LIST_DIFF_KIT
|