// // CommonTabBar.h // HC // // Created by huilinLi on 2025/11/25. // #import @protocol CommonTabBarDelegate - (void)tabBarDidSelectIndex:(NSInteger)index; @end @interface CommonTabBar : UIView @property (nonatomic, weak) id delegate; @property (nonatomic, assign) NSInteger selectedIndex; // 当前选中的索引 - (instancetype)initWithTabItems:(NSArray *)tabItems; @end