123456789101112131415161718 |
- //
- // ElePicView.h
- // JSJPCoach
- //
- // Created by EchoShacolee on 2018/1/31.
- // Copyright © 2018年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface ElePicView : UIView
- @property (weak, nonatomic) IBOutlet UIImageView *imgV;
- @property (weak, nonatomic) IBOutlet UILabel *time;
- @property (weak, nonatomic) IBOutlet UILabel *msgLab;
- @property(nonatomic,copy)void(^clickBlock)(UIImage *);
- @end
|