我正在实现推送通知,在我的iOS应用程序中将其转换为本地通知。
当iPhone被锁定(面部ID /触摸ID)时,我只能看到仅通知主体,默认情况下为“通知”。
当iPhone 解锁(面部ID /触摸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也会显示标题。