Order a NSURL array
问题 I'm loading a lot of image paths into a NSURL. The images are in a folder ordered from 1.PNG, 2.PNG, 3.PNG to 1500.PNG. When I trie to load them: let imagePath = path + "/images" let url = NSURL(fileURLWithPath: imagePath) print(url) let fileManager = NSFileManager.defaultManager() let properties = [NSURLLocalizedLabelKey, NSURLCreationDateKey, NSURLLocalizedTypeDescriptionKey] do { imageURLs = try fileManager.contentsOfDirectoryAtURL(url, includingPropertiesForKeys: properties, options