14 lines
406 B
Objective-C
14 lines
406 B
Objective-C
//
|
|
// CusomeCameraViewController.h
|
|
// CollectionViewTest
|
|
//
|
|
// Created by imac on 17/2/17.
|
|
// Copyright © 2017年 xiang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
typedef void(^LXCusomeCameraViewControllerTailoredImageBlock)(UIImage *imgae);
|
|
@interface CusomeCameraViewController : UIViewController
|
|
@property (nonatomic, copy) LXCusomeCameraViewControllerTailoredImageBlock tailoredImage;
|
|
@end
|