15 lines
304 B
Objective-C
15 lines
304 B
Objective-C
//
|
|
// MaskResultCandView.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/9/20.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface MaskResultCandView : UIView
|
|
@property(nonatomic,strong) NSArray *imagesArr;
|
|
- (instancetype)initWith:(NSArray *)images;
|
|
@end
|