UISegmentedControl Object替换swift的ObjectAtIndex

时间:2014-10-28 14:29:04

标签: ios arrays swift uisegmentedcontrol

切换到swift后,我找不到分段控件索引处的对象

这就是我一直在做的事情

[[segmentedControl subviews] objectAtIndex:0]

swift中上述行的等价物是什么?

1 个答案:

答案 0 :(得分:4)

UISegmentedControl是来自UIView的后代,其中包含subviews数组,所以

segmentedControl.subViews[0]