如何通过代码更改分段控件的值?

最佳答案

UISegmentedControl *cont;
.....
cont.selectedSegmentIndex = 4; //Selected index you want;

关于iphone - 更改分段控件的值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4728052/

10-12 14:35