22 lines
464 B
Objective-C
Executable File
22 lines
464 B
Objective-C
Executable File
//
|
|
// WFTailoringViewController.h
|
|
// WFPhotoPicker
|
|
//
|
|
// Created by 赚发2 on 16/9/2.
|
|
// Copyright © 2016年 fengwang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
typedef void(^WFTailoringViewControllerTailoredImageBlock)(UIImage *imgae);
|
|
|
|
@interface WFTailoringViewController : UIViewController
|
|
|
|
/** 传入的 id */
|
|
@property (nonatomic, strong) id asset;
|
|
|
|
@property (nonatomic, copy) WFTailoringViewControllerTailoredImageBlock tailoredImage;
|
|
|
|
|
|
@end
|