StitchingImage.h 435 B

1234567891011121314151617
  1. //
  2. // StitchImage.h
  3. // StitchingImage
  4. //
  5. // Created by Jin on 10/9/15.
  6. // Copyright © 2015 Jin. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface StitchingImage : UIImageView
  10. - (UIImageView *)stitchingOnImageView:(UIImageView *)canvasView withImageViews:(NSArray *)imageViews;
  11. - (UIImageView *)stitchingOnImageView:(UIImageView *)canvasView withImageViews:(NSArray *)imageViews marginValue:(CGFloat)marginValue;
  12. @end