JCHATAlertToSendImage.h 424 B

123456789101112131415161718
  1. //
  2. // JCHATAlertToSendImage.h
  3. // JChat
  4. //
  5. // Created by oshumini on 15/12/9.
  6. // Copyright © 2015年 HXHG. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface JCHATAlertToSendImage : NSObject
  10. @property(strong, nonatomic)UIView *alertView;
  11. @property(strong, nonatomic)UIImage *preImage;
  12. + (JCHATAlertToSendImage *)shareInstance;
  13. - (void)showInViewWith:(UIImage *) image;
  14. - (void)removeAlertView;
  15. @end