SPSBTabBarView.h 743 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // SPSBTabBarView.h
  3. // 我的社保
  4. //
  5. // Created by shanp on 2021/4/19.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "SPSBEnumerationProfile.h"
  9. @class SPSBTabBarView;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol SPSBTabBarViewDelegate <NSObject>
  12. - (void)tabBar:(SPSBTabBarView *)tabBar clickType:(SPSBTabBarType)type;
  13. - (void)tabBar:(SPSBTabBarView *)tabBar clickSameType:(SPSBTabBarType)type;
  14. @end
  15. @interface SPSBTabBarView : UIView
  16. @property (nonatomic, readonly, strong) NSArray *spsb_buttonArray;
  17. @property (nonatomic, weak) id<SPSBTabBarViewDelegate> spsb_tabbarDelegate;
  18. - (void)chooseTabBar:(SPSBTabBarType)type;
  19. - (void)tipsViewHidden:(bool)hidden tips:(nullable NSString *)tips tabBarType:(SPSBTabBarType)type;
  20. @end
  21. NS_ASSUME_NONNULL_END