UILocalNotification 显示 Xcode 项目名称

UILocalNotification showing Xcode project name

当我发送 UILocalNotification 时,通知的标题是我在 Xcode 中的项目名称,如何将 packageTracker 更改为其他名称?

这是我发送通知的方式

  UILocalNotification *notification = [[UILocalNotification alloc]init];
  notification.alertBody = @"Test Local Notification";
  notification.fireDate = [NSDate dateWithTimeIntervalSinceNow:1];
  notification.timeZone = [NSTimeZone defaultTimeZone];
  [[UIApplication sharedApplication] scheduleLocalNotification:notification];

这可能与捆绑显示名称有关。转到您的 Info.plist 并更改(或为原始密钥添加密钥 "Bundle Display Name" 或 "CFBundleDisplayName")并添加一个新名称。