1234567891011121314151617181920212223242526272829303132 |
- //
- // SPSBTabBarView.h
- // 我的社保
- //
- // Created by shanp on 2021/4/19.
- //
- #import <UIKit/UIKit.h>
- #import "SPSBEnumerationProfile.h"
- @class SPSBTabBarView;
- NS_ASSUME_NONNULL_BEGIN
- @protocol SPSBTabBarViewDelegate <NSObject>
- - (void)tabBar:(SPSBTabBarView *)tabBar clickType:(SPSBTabBarType)type;
- - (void)tabBar:(SPSBTabBarView *)tabBar clickSameType:(SPSBTabBarType)type;
- @end
- @interface SPSBTabBarView : UIView
- @property (nonatomic, readonly, strong) NSArray *spsb_buttonArray;
- @property (nonatomic, weak) id<SPSBTabBarViewDelegate> spsb_tabbarDelegate;
- - (void)chooseTabBar:(SPSBTabBarType)type;
- - (void)tipsViewHidden:(bool)hidden tips:(nullable NSString *)tips tabBarType:(SPSBTabBarType)type;
- @end
- NS_ASSUME_NONNULL_END
|