gpt4 book ai didi

ios - 从 IOS 应用程序将图像上传到 Google Drive

转载 作者:行者123 更新时间:2023-11-29 12:45:43 24 4
gpt4 key购买 nike

我正在使用一个 IOS 应用程序,我必须在其中将图片上传到 Google 云端硬盘。我可以将图片上传到 GDrive,但首先我想创建文件夹,然后上传该文件夹中的选定图像。我如何创建该相册文件夹,然后将该图像插入该文件夹中。请帮助我到处搜索,但没有得到解决方案。请帮帮我。

最佳答案

警告,以下代码均未在任何 IDE 中输入。这只是为了让你朝着正确的方向前进:)

首先,用这样的东西创建空文件夹:

GTLDriveFile *folderObj = [GTLDriveFile object];
folderObj.title = folderName;
folderObj.mimeType = @"application/vnd.google-apps.folder";
GTLQueryDrive *query = [GTLQueryDrive queryForFilesInsertWithObject:folderObj uploadParameters:nil];

然后,当您插入文件时,您需要使用类似于以下内容的方式将这个新文件夹的 ID 添加到其父引用中:

GTLDriveParentReference *parentRef = [GTLDriveParentReference object];
parentRef.identifier = theFoldersId;
fileObj.parents = [NSArray arrayWithObject:parentRef];

关于ios - 从 IOS 应用程序将图像上传到 Google Drive,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23736778/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com