Hi all,
I'm looking for something to import files to the music library.
The same as using ALAssetsLibrary
I can import photos and videos to the photos library using:
I would also like to import audio files from my app to the music library.
Thanks in advance!
I'm looking for something to import files to the music library.
The same as using ALAssetsLibrary
I can import photos and videos to the photos library using:
Code:
[library writeImageDataToSavedPhotosAlbum: fileData metadata:nil completionBlock:^(NSURL *assetURL, NSError *error) {
NSLog(@"Success writing image: %@", [assetURL path]);
}];
//-----
[library writeVideoAtPathToSavedPhotosAlbum: [NSURL URLWithString: [zipOutputPath stringByAppendingString: [NSString stringWithFormat: @"/%@", fileName]]] completionBlock:^(NSURL *assetURL, NSError *error) {
NSLog(@"Success writing video: %@", [assetURL path]);
}];
I would also like to import audio files from my app to the music library.
Thanks in advance!