//
//  GroupTabBar.h
//  垂直TabBar
//
//  Created by admin on 15/11/14.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>

@protocol GroupTabBarDelegate <NSObject>

// 选中view
- (void)switchView:(UIView *)view;

@end

@interface GroupTabBar : UIView

@property (nonatomic,assign) id <GroupTabBarDelegate> delegate; // 设置代理

@property (nonatomic, strong) NSArray *items;
@property (nonatomic, assign) int selectNumber;


- (void)showIndex:(NSInteger)index;


@end