0

Google Firebase コンソールからメッセージをプッシュした後、プッシュ メッセージ通知が iPhone デバイスの上に表示され、メッセージをクリックすると、Xcode は以下のように例外をスローします。

 [UIConcreteLocalNotification setAlertTitle:]: unrecognized selector sent to instance 0x17e1a810

 Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[UIConcreteLocalNotification setAlertTitle:]: unrecognized selector sent to instance

ここにこのコード:

//show notification to status bar
UILocalNotification *local_notification = [[UILocalNotification alloc] init];

local_notification.userInfo = userInfo;
local_notification.alertBody = userInfo[@"notification"][@"body"];
local_notification.alertTitle = userInfo[@"notification"][@"title"] ? userInfo[@"notification"][@"title"]: @"VietAir.tv Thông báo";
local_notification.fireDate = [NSDate dateWithTimeIntervalSinceNow:0]; // todo item due date (when notification will be fired). immediately here

 [[UIApplication sharedApplication] scheduleLocalNotification:local_notification];

私を助けてください、あなたの提案に感謝します

4

1 に答える 1