MGAlertIncodeView.h 635 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // MGAlertIncodeView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2019/8/24.
  6. // Copyright © 2019年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MGAlertIncodeView : UIView
  11. @property(nonatomic, strong) UIImageView *bgImgView;
  12. @property(nonatomic, strong) UILabel *titleImgView;
  13. @property(nonatomic, strong) UIImageView *textImgView;
  14. @property(nonatomic, strong) UITextField *textField;
  15. @property(nonatomic, strong) UIButton *cancleBtn;
  16. @property(nonatomic, strong) UIButton *confirmBtn;
  17. @property(nonatomic, copy) void (^clickBlock)(NSInteger i);
  18. @end
  19. NS_ASSUME_NONNULL_END