|
//
// leakCollectionViewCell.h
// ThePaperBase
//
// Created by Huixin on 15/8/3.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
@class leakCollectionViewCell;
@protocol leakCollectionViewCellDelegate <NSObject>
- (void)deleteImage:(leakCollectionViewCell*) cell;
@end
@interface leakCollectionViewCell:UICollectionViewCell
@property(nonatomic, weak)id<leakCollectionViewCellDelegate> delegate;
- (void)setImage:(UIImage*)image;
- (UIImage*)getImage;
@end
|