2016-09-07 22:37:59 +00:00
|
|
|
/**
|
|
|
|
|
* 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>
|
|
|
|
|
|
2017-03-15 14:44:52 +00:00
|
|
|
#import <IGListKit/IGListBindable.h>
|
|
|
|
|
|
|
|
|
|
@interface IGTestCell : UICollectionViewCell <IGListBindable>
|
2016-09-07 22:37:59 +00:00
|
|
|
|
|
|
|
|
@property (nonatomic, weak) id delegate;
|
2016-10-15 01:46:16 +00:00
|
|
|
@property (nonatomic, strong) IBOutlet UILabel *label;
|
2016-09-07 22:37:59 +00:00
|
|
|
|
|
|
|
|
@end
|