iOS save photo in an app specific album
I'm creating an iOS 5 app. I want to save a photo to the device. I want to save the photo to an album specific to my app, so I need to create the album, and then save photos to the album. I know how to create the album: ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init]; [library addAssetsGroupAlbumWithName:@"MY APP NAME" resultBlock:^(ALAssetsGroup *group) { //How to get the album URL? } failureBlock:^(NSError *error) { //Handle the error }]; I want add photos to the new album now, how do I do so? Sample code is greatly appreciated! You may use the following code just change the name