Play alert sound (same as default message ringtone)

前端 未结 1 965
轻奢々
轻奢々 2020-11-28 08:46

Is it possible to play some default sounds, such as when an incoming SMS/push is received?

If iOS SDK does not bundle these sound files, where can I download the sam

相关标签:
1条回答
  • 2020-11-28 09:32

    Yes it is possible, but they use undocumented enum values, that means you should not use it on AppStore apps.

    AudioServicesPlaySystemSound(1003);
    

    iOS SDK does not bundle these sound files, but you can find them on the device in the /System/Library/Audio/UISounds/ folder. However, I believe these files are copyrighted.

    Why not create a sound yourself?

    0 讨论(0)
提交回复
热议问题