forked from rs/SDSegmentedControl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathViewController.m
More file actions
44 lines (35 loc) · 877 Bytes
/
ViewController.m
File metadata and controls
44 lines (35 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//
// ViewController.m
// Example
//
// Created by Olivier Poitrey on 26/09/12.
// Copyright (c) 2012 Hackemist. All rights reserved.
//
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
[self updateSelectedSegmentLabel];
}
- (void)updateSelectedSegmentLabel
{
self.selectedSegmentLabel.text = [NSString stringWithFormat:@"%d", self.segmentedControl.selectedSegmentIndex];
}
- (IBAction)segmentDidChange:(id)sender
{
[self updateSelectedSegmentLabel];
}
- (IBAction)removeSegment:(id)sender
{
[self.segmentedControl removeSegmentAtIndex:0 animated:YES];
[self updateSelectedSegmentLabel];
}
- (IBAction)addSegment:(id)sender
{
[self.segmentedControl insertSegmentWithTitle:@"New" atIndex:0 animated:YES];
[self updateSelectedSegmentLabel];
}
@end