BogoHomeTopView.h 600 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // BogoHomeTopView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/3/18.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. //点击直播的代理
  11. @protocol BogoHomeTopViewDelegate <NSObject>
  12. -(void)clickLiveBtn;
  13. @end
  14. @interface BogoHomeTopView : UIView<UITextFieldDelegate>
  15. @property(nonatomic, strong) UIImageView *topImgView;
  16. @property(nonatomic, strong) UIButton *msgBtn;
  17. @property(nonatomic, strong) UITextField *searchField;
  18. @property(nonatomic, weak) id<BogoHomeTopViewDelegate> delegate;
  19. @end
  20. NS_ASSUME_NONNULL_END