0

你好,我正在开发一个应用程序LocalNotifications。我想制作一个处理程序,当用户点击其中的通知时NotificationBar,它将向他显示新的 Viewctontroler,其中包含从通知接收的 Title 和 Descr。

 UILocalNotification *notif;

      for(int i=0 ; i<[idnoty count]; i++){
       notif=[[UILocalNotification alloc]init];
           if (notif == nil) return;


     notif.fireDate = [NSDate date];// Now here you can manage the fire time.
     notif.timeZone = [NSTimeZone defaultTimeZone];
     [notif setHasAction:NO];
     notif.timeZone = [NSTimeZone localTimeZone];
     notif.alertBody = [titlenoty objectAtIndex:i];
      notif.alertAction=[descrnoty objectAtIndex:i];
      notif.applicationIconBadgeNumber = i+1;
      notif.soundName = UILocalNotificationDefaultSoundName;
  NSDictionary *infoDict = [NSDictionary dictionaryWithObjectsAndKeys:@"Object 2",@"Key 2", nil];
      notif.userInfo = infoDict;

               //apostolh gia na svisei ta push
   NSString *URLTest=[dict objectForKey:@"URL"];
   NSString *URL1=[NSString stringWithFormat:@"%@%@",URLTest,@"push.php?"];

   NSString *strURL1 = [NSString stringWithFormat:@"%@id=%@",URL1,[idnoty objectAtIndex:i]];


 NSData *dataURL1 = [NSData dataWithContentsOfURL:[NSURL URLWithString:strURL1]];

 [[UIApplication sharedApplication] scheduleLocalNotification:notif ];

 }
4

1 回答 1

0

你可以在

- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
于 2013-05-28T08:12:41.353 回答