UIPickerView not playing the scrolling sound

47 Views Asked by At

It's a music app, and the picker used to play the scrolling sound, which I liked, but on the latest OS updates it stopped. Tried the keyboard sound settings, didn't work. Maybe something I'm missing in the settings, in the storyboard or here?

@interface ViewController ()

{
    NSArray *_pickerData;
}

...

- (void)viewDidLoad
{
    [super viewDidLoad];
    
    //picker data
    
    _pickerData = @[@"ThaHood", @"Street", @"Cassette", @"Eastside", @"Chill", @"Jamming", @"Beat 2", @"Beat 3", @"The Hall", @"Funkit", @"Sided", @"Nisquare", @"Final Day", @"Recruit", @"Cypher", @"Angels", @"Super", @"Mortal"];
    
    // Connect data
    _picker.dataSource = self;
    _picker.delegate = self;

...

}
0

There are 0 best solutions below