GroupTabBar.h 506 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
//
//  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;
23
@property (nonatomic, assign) int selectNumber;
24 25 26 27 28 29


- (void)showIndex:(NSInteger)index;


@end