Correctly using TAniIndicator in firemonkey mobile dev for wait for processing

后端 未结 2 965
无人及你
无人及你 2021-01-31 13:08

I am using Delphi XE-5 (Firemonkey Mobile Application)

I am trying to get the TAniIndicator to work, by displaying during my long processing. I have a TAniIndicator (Ani

2条回答
  •  滥情空心
    2021-01-31 13:33

    The problem come from the timer Inside the TAnimation, by chance Embarcadero add a global variable.

    Add the following code in your FormCreate procedure

    {$IFDEF IOS}
    AniFrameRate := 10;
    {$ENDIF}
    

提交回复
热议问题