标签: ios arrays swift uisegmentedcontrol
切换到swift后,我找不到分段控件索引处的对象
这就是我一直在做的事情
[[segmentedControl subviews] objectAtIndex:0]
swift中上述行的等价物是什么?
答案 0 :(得分:4)
UISegmentedControl是来自UIView的后代,其中包含subviews数组,所以
UISegmentedControl
UIView
subviews
segmentedControl.subViews[0]