我正在使用iOS的Firemonkey XE4开发应用程序,并且需要在没有用户输入的情况下防止设备进入休眠状态。我发现此命令用于xcode开发:

[应用程序setIdleTimerDisabled:YES];

我认为FMX中有等效功能吗?

有人可以帮忙吗?

谢谢

达里尔

最佳答案

您可以直接进入UIApplication,如下所示:

uses
  iOSapi.UIKit;

{$R *.fmx}

procedure TForm6.Button1Click(Sender: TObject);
var
  UIApp : UIApplication;
begin
  UIApp := TUIApplication.Wrap(TUIApplication.OCClass.sharedApplication);
  UIApp.setIdleTimerDisabled(True);
end;

10-08 07:15