Can I disable UIPickerView scroll sound?

后端 未结 8 1524
臣服心动
臣服心动 2020-11-30 10:16

I want to disable the annoying clicks that the UIPickerView generates upon scrolling up and down. Is there a way to do this? I want to play short sounds for each item that t

8条回答
  •  甜味超标
    2020-11-30 11:00

    There is an undocumented way (I'm actually not sure if it is still available in iphone 3.0) but here it is any way

    #import 
    
    @interface SilintUIPickerView: UIPickerView
    { }
    
    - (void) setSoundsEnabled: (BOOL) enabled;
    @end
    

    use this subclass instead and call [view setSoundsEnabled: NO]

    I'm interested in knowing how it goes in the latest SDK, give it a shot and let us know.

提交回复
热议问题