mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-16 13:58:20 +00:00
Summary: Take 2. Remove `IGListCollectionView` per #409. Use plain old `UICollectionView`. (This re-applies D4640425 and updates as needed.) Also: - run `pod update` everywhere - update changelog Reviewed By: paulvanderspek Differential Revision: D4812207 fbshipit-source-id: 1ddbae06cdeddb43d8af175d3e8a045a36ff150e
20 lines
547 B
Objective-C
20 lines
547 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 <UIKit/UIKit.h>
|
|
|
|
#import <IGListKit/IGListAdapterDataSource.h>
|
|
|
|
#import "IGTestObject.h"
|
|
|
|
@interface IGTestStoryboardViewController : UIViewController
|
|
|
|
@property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
|
|
|
|
@end
|