Wo genau liegen Deine Daten unter iOS?
Liegt nicht am Path... Ist neu seit UPD 2
Delphi-Quellcode:
Function DDTGetMyDirectory:String;
begin
{$IFDEF Android}
Result := TPath.GetDocumentsPath + PathDelim;
{$ELSE}
Result := GetHomePath + PathDelim + 'Documents' + PathDelim;
{$ENDIF}
end;
begin
AppImportPath := DDTGetMyDirectory+'GVSImport'+ PathDelim;
AppExportPath := DDTGetMyDirectory+'GVSExport'+ PathDelim;
AppBasePath := DDTGetMyDirectory+'AppBase' + PathDelim;
end;
Wie es aussieht wird die App unter iOS jetzt auch erst deinstalliert. Da das App-Icon vom Device kurz verschwindet...
Mavarik