JXWebAuthView.h 548 B

12345678910111213141516171819202122232425262728
  1. //
  2. // JXWebAuthView.h
  3. // shiku_im
  4. //
  5. // Created by p on 2019/3/4.
  6. // Copyright © 2019年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol JXWebAuthViewDelegate <NSObject>
  11. - (void)webAuthViewConfirmBtnAction;
  12. @end
  13. @interface JXWebAuthView : UIView
  14. @property (nonatomic, strong) UIView *contentView;
  15. @property (nonatomic, strong) UIImageView *headImage;
  16. @property (nonatomic, strong) UILabel *tipTitle;
  17. @property (nonatomic, assign) id<JXWebAuthViewDelegate> delegate;
  18. @end
  19. NS_ASSUME_NONNULL_END