标签:style io ar color sp for on log cti
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
//初始化背景图
[self initBackgroundView];
}
#pragma -makr -funcitons
-(void)initBackgroundView
{
SVSegmentedControl *options = [[SVSegmentedControl alloc] initWithSectionTitles:[NSArray arrayWithObjects:@"购车应用",@"车主应用", nil]];
options.center=CGPointMake(160, 100);
[options setSelectedSegmentIndex:0 animated:NO];
[options addTarget:self action:@selector(segmentedControlChangedValue:) forControlEvents:UIControlEventValueChanged];
[self.view addSubview:options];
}
#pragma -mark -doClickAction
- (void)segmentedControlChangedValue:(SVSegmentedControl*)segmentedControl {
NSLog(@"--index--%i-", segmentedControl.selectedSegmentIndex);
}
标签:style io ar color sp for on log cti
原文地址:http://www.cnblogs.com/zhibin/p/4118751.html