1. Enable local push and set the attribute [cpp] NSString * str = @ "Local push information"; UIApplication * app = [UIApplication sharedApplication]; UILocalNotification * notification = [[UILocalNotification alloc] init]; // initialize the local push notification. soundName = UILocalNotificationDefaultSoundName; // set the sound notification. alertBody = str; // set the pushed message [app scheduleLocalNotification: notification]; // key steps for local push, [notification release]; [str release]; NSString * str = @ "locally pushed information"; UIApplication * app = [UIApplication sharedApplication]; UILocalNotification * notification = [[UILocalNotification alloc] init]; // initialize the local push notification. soundName = UILocalNotificationDefaultSoundName; // set the sound notification. alertBody = str; // set the pushed message [app scheduleLocalNotification: notification]; // key steps for local push, [notification release]; [str release]; the above method can achieve the push effect 2. The local push acceptance method [cpp]-(void) application :( UIApplication *) application didReceiveLocalNotification :( UILocalNotification *) notification-(void) application :( UIApplication *) application didReceiveLocalNotification :( UILocalNotification *) notification