Tab切换视图
#pragma mark - 生命周期
- (void)viewDidLoad {
[super viewDidLoad];
[self.view addSubview:self.tabSwitchView2];
}
#pragma mark - 懒加载
- (JCTabSwitchView *)tabSwitchView2 {
if (!_tabSwitchView2) {
CGRect rect = CGRectMake(60, 100, [[UIScreen mainScreen] bounds].size.width-120, 30);
_tabSwitchView2 = [[JCTabSwitchView alloc] initWithFrame:rect tabTitles:@[@"场景分类", @"地市分类", @"热度排行"] selectColor:appThemeColor normalColor:[UIColor whiteColor]];
_tabSwitchView2.selectIndexBlock = ^(NSInteger index) {
NSLog(@"index--->%ld",(long)index);
};
}
return _tabSwitchView2;
}