UILocalNotification* note = [[UILocalNotification alloc] init];
note.fireDate = [NSDate date];
note.timeZone = [NSTimeZone defaultTimeZone];
note.repeatInterval = NSDayCalendarUnit;
note.alertBody = NSLocalizedString(@"It's a notification!",@"");
note.alertAction = NSLocalizedString(@"Hi there",@"");
[[UIApplication sharedApplication] scheduleLocalNotification:note];
[note release];