19 lines
362 B
Objective-C
19 lines
362 B
Objective-C
//
|
||
// emptyInfoCollectionViewCell.h
|
||
// Ifish
|
||
//
|
||
// Created by ifish7-ios on 16/3/31.
|
||
// Copyright © 2016年 imac. All rights reserved.
|
||
//
|
||
|
||
#import <UIKit/UIKit.h>
|
||
|
||
@interface emptyInfoCollectionViewCell : UICollectionViewCell
|
||
|
||
|
||
|
||
@property (weak, nonatomic) IBOutlet UIImageView *emptyImage;
|
||
|
||
@property (weak, nonatomic) IBOutlet UILabel *emptyLabel;
|
||
@end
|