This is the forum for miscellaneous technical/programming questions.
Moderator: 2ffat
Lena
BCBJ Master
Posts: 715 Joined: Sun Feb 06, 2011 1:28 pm
Post
by Lena » Wed Aug 12, 2020 9:42 am
Hi.
I deploy my project on IOS device with one button:
Code: Select all
void __fastcall TForm1::Button1Click(TObject *Sender)
{
Close();
}
When press I got:
Error Unsupported platform service: Terminate.
How fix it?
HsiaLin
BCBJ Master
Posts: 343 Joined: Sun Jul 08, 2007 6:29 pm
Post
by HsiaLin » Wed Aug 12, 2020 7:06 pm
Be careful closing iOS apps, apple will ban your app if you close it manually instead of using the iOS home button way of ending it. I don't write apps, but i have seen many complain of apple causing problems over that issue.
Lena
BCBJ Master
Posts: 715 Joined: Sun Feb 06, 2011 1:28 pm
Post
by Lena » Wed Aug 12, 2020 9:53 pm
Thank You! Now I know that it is impossible to use Close() for the main form of the IOS application.