1234567891011121314151617 |
- //
- // StitchImage.h
- // StitchingImage
- //
- // Created by Jin on 10/9/15.
- // Copyright © 2015 Jin. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface StitchingImage : UIImageView
- - (UIImageView *)stitchingOnImageView:(UIImageView *)canvasView withImageViews:(NSArray *)imageViews;
- - (UIImageView *)stitchingOnImageView:(UIImageView *)canvasView withImageViews:(NSArray *)imageViews marginValue:(CGFloat)marginValue;
- @end
|