我在 XIB 中描述了分段控制(完全在情节提要中)并且参考了控制器类。我正在尝试根据语言更改分段控件标题,但无法更改。当我记录我的分段控件时,它说它没有任何分段,即使我已经在 XIB 中制作它们或以编程方式创建它们。有人知道出了什么问题吗?
代码:
NSLog(@"segments:%d", [segmentControl numberOfSegments]);
[segmentControl removeAllSegments];
[segmentControl insertSegmentWithTitle:@"stuff" atIndex:0 animated:NO];
[segmentControl insertSegmentWithTitle:@"other stuff" atIndex:1 animated:NO];
NSLog(@"segments:%d", [segmentControl numberOfSegments]);
两个日志输出都显示为零