mirror of
https://github.com/jialexd/sdk-ameba-v4.0c_180328.git
synced 2025-01-15 15:15:17 +00:00
16 lines
356 B
Objective-C
Executable file
16 lines
356 B
Objective-C
Executable file
/*
|
||
Copyright (C) 2015 Apple Inc. All Rights Reserved.
|
||
See LICENSE.txt for this sample’s licensing information
|
||
|
||
Abstract:
|
||
Custom collection view cell for image and its label.
|
||
*/
|
||
|
||
@import UIKit;
|
||
|
||
@interface Cell : UICollectionViewCell
|
||
|
||
@property (strong, nonatomic) IBOutlet UIImageView *image;
|
||
@property (strong, nonatomic) IBOutlet UILabel *label;
|
||
|
||
@end
|