Hi !
In my application I need load picture so I use this code :
1.
String Result = "";
Result = System::Ioutils::TPath::Combine(System::Ioutils::TPath::GetDocumentsPath(),"Image.png");
Image1->Bitmap->LoadFromFile(Result);
2. I have added #include <System.IOUtils.hpp> to h file
3. In deployment I added file with remote path StartUp\Documents\ . I see this file in package.
As you can see everything as in https://community.embarcadero.com/article/articles-tutorials/151-ui/927-deploying-and-accessing-local-files-on-ios-and-android and for Android it work but in iOS32( iPhone 4s) and iOS64( iPhone 6) not work !
From my investigation I see that default paths changed since iOS8 from /var/mobile/Applications/<application ID> to
/var/mobile/Containers/Data/Application/<application ID>
So I receive this message (see below).
Are anybody know about issue or it only my problem ?
I work on Berlin Update 1.