gpt4 book ai didi

iphone - 我应该在哪里存储图像,以便我可以使用 iTunes 文件共享它们?

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

我的 iOS 应用程序从照片库和相机中拍摄照片,但我不确定将它们存储在哪里。我想通过 iTunes 文件共享将这些图像呈现给用户。

我应该将它们存储在应用程序的文档目录中,否则会导致 Apple 拒绝吗?

最佳答案

将文件保存到doc目录

#define ROOT_FOLDER_PATH        [NSString stringWithFormat:@"%@", [NSSearchPathForDirectoriesInDomains(NSLibraryDirectory,NSUserDomainMask, YES)objectAtIndex:0]]    

-(BOOL)savePhoto:(NSData*)photoData:(NSString*)photoName
{
NSString *fullFilePath = [NSString stringWithFormat:@"%@/%@", ROOT_FOLDER_PATH, photoName];
return [photoData writeToFile:fullFilePath atomically:YES];
}

Plist 中启用应用程序支持 iTunes 文件共享。就这样。 :-)

我们有一个这样的应用程序。苹果会批准。没问题

关于iphone - 我应该在哪里存储图像,以便我可以使用 iTunes 文件共享它们?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10717601/

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