SHomeNavView.h 408 B

123456789101112131415161718192021222324
  1. //
  2. // SHomeNavView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2020/4/26.
  6. // Copyright © 2020 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface SHomeNavView : UIView
  11. @property(nonatomic, strong) UIButton *backBtn;
  12. @property(nonatomic, strong) UIButton *rightBtn;
  13. @property(nonatomic, copy) void(^clickBtnBlock)(NSInteger index);
  14. @end
  15. NS_ASSUME_NONNULL_END