// // KBCustomTabBar.h // keyBoard // // Created by Assistant on 2026/01/16. // #import NS_ASSUME_NONNULL_BEGIN @class KBCustomTabBar; @protocol KBCustomTabBarDelegate - (void)customTabBar:(KBCustomTabBar *)tabBar didSelectItemAtIndex:(NSInteger)index; @end @interface KBCustomTabBar : UIView @property(nonatomic, weak) id delegate; @property(nonatomic, assign) NSInteger selectedIndex; - (instancetype)initWithItems:(NSArray *)items; - (void)setSelectedIndex:(NSInteger)selectedIndex animated:(BOOL)animated; - (void)setTransparentBackground:(BOOL)transparent; @end NS_ASSUME_NONNULL_END