GiGaMaskTime/GIGA/Modules/Me/View/FeedViews/GIGaFeedPhontosViewCell.h

20 lines
595 B
Objective-C

//
// GIGaFeedPhontosViewCell.h
// GIGA
//
// Created by lianxiang on 2018/9/22.
// Copyright © 2018年 com.giga.ios. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <Photos/PHAsset.h>
typedef void(^GiGaPhotoPickerBlock)(void);
@interface GIGaFeedPhontosViewCell : UITableViewCell
@property(nonatomic,copy) GiGaPhotoPickerBlock pickerBalock;
@property(nonatomic,strong) NSMutableArray *images;
@property(nonatomic,strong) UICollectionView *collectionView;
-(void)photoPikerComplete:(GiGaPhotoPickerBlock)pikerComplete;
@property(nonatomic,strong) NSMutableArray *imageNames;
@end