How can the filename be extracted from an ALAsset?
Is there a way to get this via the url or some other way?
From iOS 5.0 you can get the file from ALAssetRepresentation Class.
ALAssetRepresentation *rep = [anAssetItem defaultRepresentation]; NSString *fileName = [rep filename];
1.4m articles
1.4m replys
5 comments
57.0k users