有人知道拒绝输入到UISegmentedControl对象的方法吗?
在我的应用程序加载阶段,如果点击UISegmentedControl,应用程序就会崩溃。
我试过了:
[segmentControl setEnabled:NO];
但这似乎并不管用。
发布于 2012-03-02 09:39:43
segmentControl.userInteractionEnabled = NO;
https://stackoverflow.com/questions/9526710
相似问题