0xSina
0xSina

Reputation: 21563

UIPickerView sound

I am looking for the "tick" sound played by UIPickerView as you scroll through elements. Is there a directory in which I can find this file? Or maybe a link to this file?

Thanks

Upvotes: 2

Views: 1709

Answers (2)

Manikandan
Manikandan

Reputation: 253

With the latest simulators you can find it at the following path:

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator**IOS_VERSION**.sdk/System/Library/Frameworks/UIKit.framework/scrollerClick.wav

Where **IOS_VERSION** is e.g. 5.0, 5.1, 6.0

Upvotes: 2

omz
omz

Reputation: 53551

/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator5.0.sdk/System/Library/Frameworks/UIKit.framework/scrollerClick.wav

(or similar, depending on where you installed the developer tools)

Upvotes: 9

Related Questions