세그먼트 컨트롤러

카테고리 없음 2011. 10. 8. 21:41 Posted by js™

NSArray *segItem = [NSArray arrayWithObjects:@"하나",@"",@"",@"",nil];
UISegmentedControl *sc = [[UISegmentedControl alloc] initWithItems:segItem];
sc.segmentedControlStyle = UISegmentedControlStyleBar;
sc.momentary = NO;
[sc addTarget:self action:@selector(segAction:) forControlEvents:UIControlEventValueChanged];
self.navigationItem.titleView = sc;