Save Audio files to Photo Album Library iPhone Programmatically
ios, iphone, objective-c
Solution
Check the below code. its working for me. We can store Audio/Video files using this code.
UISaveVideoAtPathToSavedPhotosAlbum([[NSBundle mainBundle] pathForResource:@"sub" ofType:@"caf"], nil, nil, nil); // [[NSBundle mainBundle] pathForResource:@"sub" ofType:@"caf"] is Url path.
Thanks
Problem
I need to save My Audio Files to Photo Album like Video and Image Save to Photo Album.