我的iOS应用中有一个UISegmentedControl
,根据选择的按钮,我希望self.itemLocation
的值分配为" US"或"全球"。
- (IBAction)itemLocation:(id)sender {
switch (self.itemLocation.selectedSegmentIndex) {
default:
case 0:
self.itemLocation = @"US";
break;
case 1:
self.itemLocation = @"Worldwide";
break;
}
}
答案 0 :(得分:0)
假设self.itemLocation是UISegmentedControl,那么您可以按如下方式设置每个段的文本:
[self.itemLocation setTitle: @"Title" forSegmentAtIndex: 0];