Currently I have my files in an array as URLs:
var cafFilesArray: [NSURL] {
return (NSFileManager.defaultManager().contentsOfDirectoryAtURL(documentsDirectoryURL, includingPropertiesForKeys: nil, options: .SkipsHiddenFiles | .SkipsSubdirectoryDescendants | .SkipsPackageDescendants, error: nil) as! [NSURL]).sorted{$0.lastPathComponent<$1.lastPathComponent}.filter{$0.pathExtension!.lowercaseString == "caf"}
How do I convert an array of URLs to Strings so I can display them in a tableview.
Thanks.