ElePicView.h 417 B

123456789101112131415161718
  1. //
  2. // ElePicView.h
  3. // JSJPCoach
  4. //
  5. // Created by EchoShacolee on 2018/1/31.
  6. // Copyright © 2018年 Danson. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface ElePicView : UIView
  10. @property (weak, nonatomic) IBOutlet UIImageView *imgV;
  11. @property (weak, nonatomic) IBOutlet UILabel *time;
  12. @property (weak, nonatomic) IBOutlet UILabel *msgLab;
  13. @property(nonatomic,copy)void(^clickBlock)(UIImage *);
  14. @end