我正在实现推送通知,我在iOS应用程序中将其转换为本地通知。
当iPhone被锁定(面部识别/触摸ID)时,我只看到默认情况下为“通知”的通知正文。
当iPhone解锁(面部识别/触摸ID)时,我会看到整个通知内容。
我试图将警报标题更改为硬编码文本。还试图改变其他属性,但我没有设法解决它。
这是我创建本地通知的方式:
UILocalNotification *notification = [[UILocalNotification alloc] init];
notification.userInfo = dictionary;
[notification setAlertTitle:@"alertTitle"];
[notification setAlertBody:@"alertBody"];
[notification setFireDate:[NSDate date]];
[notification setTimeZone:[NSTimeZone defaultTimeZone]];
[[UIApplication sharedApplication] presentLocalNotificationNow:notification];
我想要的是 - 尽管设备处于锁定状态,显示通知的标题,就像WhatsApp那样。
正如您所看到的,使用相同的设置 - 即使iPhone被锁定,WhatsApp也会显示标题。