此组件为自定义segmentControl,标题可以是字符串,也可以是图片,可以设置选中时的标题颜色,图片,及背景颜色等.
示例代码:
//--------------------------------示例代码------------------------------------------
WLSegmentControl *segmentControl1 = [[WLSegmentControl alloc] initWithFrame:CGRectMake(10, 50, self.view.bounds.size.width-20, 30)
btnTitles:@[@"title1", @"title2", [UIImage imageNamed:@"normal.png"], @"titles4"]
cornerRadius:15
style:WLSegmentedControlStyleBordered];
[segmentControl1 setTitleColor:[UIColor grayColor] highlightedColor:nil selectedColor:[UIColor whiteColor]];
[segmentControl1 setTitleSelectedBackgroundColor:[UIColor brownColor]];
[segmentControl1 setselectedImage:[UIImage imageNamed:@"selected.png"] tag:2];
[self.view addSubview:segmentControl1];
[segmentControl1 setTapBlockHandle:^(NSInteger tag){
NSLog(@"-----tag:%ld", (long)tag);
}];
//--------------------------------示例代码------------------------------------------
效果图:
