1
開発中のプロジェクトでプッシュ通知用のサウンドを設定しようとしていますが、デバイスでは機能していません。通知用の警告音をどのように設定するか教えてください。目的のCでプッシュ通知のサウンドを設定する方法は?
UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
center.delegate = self;
[center requestAuthorizationWithOptions:(UNAuthorizationOptionSound | UNAuthorizationOptionAlert | UNAuthorizationOptionBadge) completionHandler:^(BOOL granted, NSError * _Nullable error)
{
if(!error)
{
[[UIApplication sharedApplication] registerForRemoteNotifications];
NSLog(@"Push registration success.");
}
else
{
NSLog(@"Push registration FAILED");
NSLog(@"ERROR: %@ - %@", error.localizedFailureReason, error.localizedDescription);
NSLog(@"SUGGESTIONS: %@ - %@", error.localizedRecoveryOptions, error.localizedRecoverySuggestion);
私は私が間違っているつもりだところ、誰もが私に教えてくださいすることができ、「didFinishLaunch」方式で「Appdelegate.m」で上記のコードを使用しています。