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];
2.1m questions
2.1m answers
60 comments
57.0k users