gpt4 book ai didi

ios - 带有 iOS 插件的 Delphi XE4 - 如何嵌入文件

转载 作者:行者123 更新时间:2023-12-03 19:31:45 25 4
gpt4 key购买 nike

在 Android/Eclipse 上,我可以将文件放在例如 Assets 文件夹。我可以在 Delphi XE4 for iOS 中做类似的事情吗?

即创建一个文件夹,可以放置数据和图像文件并自动内置到应用程序中?

我知道我可以在表单文件中包含图像、txt 等,但如果我可以避免的话,这不是我想要的。

...

如果我包括 res.zip Delphi > 项目 > 部署 我的以下代码在模拟器中返回 false:

FileExists(GetHomePath + PathDelim + 'res.zip')

FileExists(GetHomePath + PathDelim + 'Documents' + PathDelim + 'res.zip')

供引用, 远程目录 在部署中设置为 ./

最佳答案

你可以做这样的事情(这是来自我在 iOS 上使用的 TClientDataSet 的代码。

uses System.SysUtils;

procedure TdtmdlNestoria.DataModuleCreate(Sender: TObject);
begin
cdsSearches.FileName := GetHomePath + PathDelim + 'Documents' + PathDelim + 'Searchs.xml';
end;

如果您正在加载要部署到设备的文件,您还需要确保项目源将 System.StartUpCopy 作为使用中的第一项。 (右键单击项目并选择查看源代码)
例如
program Project6;

uses
System.StartUpCopy,
FMX.Forms,
Unit5 in 'Unit5.pas' {Form5};

{$R *.res}

begin
Application.Initialize;
Application.CreateForm(TForm5, Form5);
Application.Run;
end.

关于ios - 带有 iOS 插件的 Delphi XE4 - 如何嵌入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17193344/

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