How do I boot to Safari in Delphi+iOS?

Asked 2 years ago, Updated 2 years ago, 126 views

I want to start Safari when I run the program written in Delphi on iOS.How can I do this?

ios delphi

2022-09-30 20:22

1 Answers

http://www.gesource.jp/weblog/?p=6952

uses FMX.Helpers.iOS, Macapi.Helpers;
procedure TForm1.Button1Click(Sender:TObject);
const
  URL='http://www.google.com/';
begin
  SharedApplication.openURL (StrToNSUrl(URL));
end;


2022-09-30 20:22

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.