mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-23 01:08:27 +00:00
fix NSProxy init
Summary: `NSProxy` doesn't define `init` because it's abstract. designated init requires a call to super designated init (which doesn't exist for NSProxy) sweet Closes https://github.com/Instagram/IGListKit/pull/667 Differential Revision: D4908034 Pulled By: jessesquires fbshipit-source-id: c223e05f49ab74d69affe8fdf37e0625e587c8b0
This commit is contained in:
parent
ae11d6af53
commit
693cb8a523
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ IGLK_SUBCLASSING_RESTRICTED
|
|||
*/
|
||||
- (instancetype)initWithCollectionViewTarget:(nullable id<UICollectionViewDelegate>)collectionViewTarget
|
||||
scrollViewTarget:(nullable id<UIScrollViewDelegate>)scrollViewTarget
|
||||
interceptor:(IGListAdapter *)interceptor NS_DESIGNATED_INITIALIZER;
|
||||
interceptor:(IGListAdapter *)interceptor;
|
||||
|
||||
/**
|
||||
:nodoc:
|
||||
|
|
|
|||
Loading…
Reference in a new issue