in objective C one could save a video to a custom named photo album using code similar to what follows
-(void)saveImage:(UIImage*)image
toAlbum:(NSString*)albumName
withCompletionBlock:(SaveImageCompletion)completionBlock;
I can't figure out how to do this ins swift, when I look at the definition of ALAssetsLibrary I don't see any function call toAlum or savedImage. I can't seem to figure this out?
Here is the code I used
keep in mind what I'm doing is copying a file from my bundle into this album (pre populateing it with videos)