简体   繁体   中英

UILocalNotification showing Xcode project name

When I send a UILocalNotification the title of the notification is the project name I have in Xcode, how can I change the packageTracker to something else?

Here is how I am sending the notification

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

在此处输入图片说明

This may be tied to the Bundle Display Name. Goto your Info.plist and change (or add the Key "Bundle Display Name" or "CFBundleDisplayName" for raw Key) and add a new name.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM