- 支持IOS6+
- 支持xib
- 支持屏幕旋转
- 用法简单:
WHUSliderView* hv=[[WHUSliderView alloc] initWithFrmae];
hv.translatesAutoresizingMaskIntoConstraints=NO;
[self.view addSubview:hv];
NSDictionary* viewDic=NSDictionaryOfVariableBindings(hv);
[self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|[hv]|" options:0 metrics:nil views:viewDic]];
[self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|[hv]|" options:0 metrics:nil views:viewDic]];
hv.controllerArray=@[vc1,vc2,vc3,vc4,vc5,vc6]; //UIViewController 数组.
hv.selectedColor=[UIColor redColor];
[hv constructUI];