Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 viewDidAppear 中,我设置了 _mydatePicker.enabled = FALSE。这会“冻结”日期选择器,并且在 iOS 6 中使用时不会响应触摸;然而,在 iOS 7 中,日期选择轮仍然可以由用户转动。除非调用 _mydatPicker.enabled =TRUE ,否则是否有“冻结”日期选择器轮的方法?
使用 userInteractionEnabled 属性怎么样?
利用 :
datePicker.userInteractionEnabled = FALSE;
它适用于 iOS 7 或 iOS 6。