CSJWebViewBottomBar.h 467 B

12345678910111213141516171819202122
  1. //
  2. // CSJWebViewBottomBar.h
  3. // CSJAdSDK
  4. //
  5. // Created by Willie on 2022/2/9.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface CSJWebViewBottomBar : UIView
  10. @property (nonatomic, strong) UIButton *goBackButton;
  11. @property (nonatomic, strong) UIButton *goForwardButton;
  12. @property (nonatomic, strong) UIButton *reloadButton;
  13. @property (nonatomic, strong) UIButton *safariButton;
  14. @property (nonatomic, strong) UIView *line;
  15. @end
  16. NS_ASSUME_NONNULL_END