You cannot register for local notifications when you are in the background. Use the registration code below for local notification.
UILocalNotification *localNotification = [[UILocalNotification alloc] init];
localNotification.alertBody = @"Your text";
localNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:120.0];
[[UIApplication sharedApplication]scheduleLocalNotification:localNotification];
, : didReceiveLocalNotification.
,