如何在不花时间的情况下从iPhone中获取带有图像的所有专辑?

时间:2018-09-28 11:45:27

标签: ios iphone swift xcode

我试图从相册中获取所有图像。它会获取所有包含其URL和图像数据的图像,但不会直接从给定的URL路径获取图像,因此我需要在Document Directory中下载图像,然后获取路径。因此,这花费了太多时间。我用下面的代码。我想获取像iPhone照片库一样的图像。

请找到错误。

// Begin reading from stdin so the process does not exit.
process.stdin.resume();

process.on('SIGINT', () => {
  console.log('Received SIGINT. Press Control-D to exit.');
});

// Using a single function to handle multiple signals
function handle(signal) {
  console.log(`Received ${signal}`);
}

process.on('SIGINT', handle);
process.on('SIGTERM', handle);

1 个答案:

答案 0 :(得分:0)

我建议您仅使用UIImagePickerController,或者如果您的应用需要多个图像选择功能,则建议使用第三方库,例如DKImagePickerController。正如其他用户在评论中已经提到的那样,这些只会将用户选择的图像复制到您应用的目录中,从而节省处理时间。