我尝试创建闹钟应用程序,但我不知道如何将iTunes中的歌曲设置为本地通知的声音.
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { if (indexPath.section == 0) { MPMediaPickerController *picker = [[MPMediaPickerController alloc] initWithMediaTypes: MPMediaTypeMusic]; picker.delegate = self; picker.allowsPickingMultipleItems = NO; picker.prompt = NSLocalizedString (@"Select any song from the list",@"Prompt to user to choose some songs to play"); //[self presentModalViewController: picker animated: YES]; [self.navigationController pushViewController:picker animated:YES]; NSLog(@"gsudifghukdsf"); [picker release]; } } - (void) mediaPicker: (MPMediaPickerController *) mediaPicker didPickMediaItems: (MPMediaItemCollection *) mediaItemCollection { [self.navigationController popToRootViewControllerAnimated:YES]; //[self dismissModalViewControllerAnimated: YES]; NSLog(@"%@",mediaItemCollection); UILocalNotification *local = [[UILocalNotification alloc] init]; //selectedSongCollection=mediaItemCollection; } - (void) mediaPickerDidCancel: (MPMediaPickerController *) mediaPicker { [self.navigationController popToRootViewControllerAnimated:YES]; //[self dismissModalViewControllerAnimated: YES]; }
关于本地通知的东西看起来像这样
UILocalNotification *localNotif = [[UILocalNotification alloc] init]; if (localNotif == nil) { //NSLog(@"Get in if localNotif"); return; } localNotif.fireDate = DateAlarm; localNotif.timeZone = [NSTimeZone defaultTimeZone]; // Notification details localNotif.alertBody = [NSString stringWithFormat:@"%@",DateAlarm]; // Set the action button localNotif.alertAction = @"Oh Shit"; localNotif.soundName = UILocalNotificationDefaultSoundName;
那么请指导我如何将歌曲设置为本地声音?