- (void) showMediaPicker
{
MPMediaPickerController *picker =
[[MPMediaPickerController alloc] initWithMediaTypes: MPMediaTypeAnyAudio];
[[picker view] setFrame:CGRectMake(0, 0, 320, 480)];
picker.delegate = self;
picker.allowsPickingMultipleItems = YES;
picker.prompt = NSLocalizedString (@"AddSongsPrompt", @"Prompt to user to choose some songs to play");
[self presentModalViewController:picker animated: YES];
[picker release];
}
- (void) mediaPicker: (MPMediaPickerController *) mediaPicker
didPickMediaItems: (MPMediaItemCollection *) collection
{
[self dismissModalViewControllerAnimated: YES];
[self playSelectedMediaCollection: collection];
}
- (void) playSelectedMediaCollection: (MPMediaItemCollection *) collection {
if (collection.count == 1) {
NSArray *items = collection.items;
MPMediaItem *mediaItem = [items objectAtIndex:0];
if ([mediaItem isKindOfClass:[MPMediaItem class]]) {
NSURL *url = [mediaItem valueForProperty:MPMediaItemPropertyAssetURL];
AVPlayerItem *playerItem = [[AVPlayerItem alloc] initWithURL:url];
AVMutableAudioMix *fadeMix = [AVMutableAudioMix audioMix];
AVMutableAudioMixInputParameters *params = [AVMutableAudioMixInputParameters audioMixInputParameters];
[params setVolumeRampFromStartVolume:0 toEndVolume:1 timeRange:
CMTimeRangeMake(CMTimeMakeWithSeconds(0, 1), CMTimeMakeWithSeconds(5,1))];
[fadeMix setInputParameters:[NSArray arrayWithObject:params]];
[playerItem setAudioMix:fadeMix];
AVPlayer *newAvPlayer = [[AVPlayer alloc] initWithPlayerItem:playerItem];
[newAvPlayer play];
}
}
}
This code Build time error is the Undefined symbols for architecture i386: "_CMTimeMakeWithSeconds", referenced from: -[SongFileViewVC playSelectedMediaCollection:] in SongFileViewVC.o "_CMTimeRangeMake", referenced from: -[SongFileViewVC playSelectedMediaCollection:] in SongFileViewVC.o ld: symbol(s) not found for architecture i386 clang: error: linker command failed with exit code 1 (use -v to see invocation)
How I solve it.

