Android 下 Delphi 中的 TStopWatch 是否存在任何已知问题?当我创建 TStopWatch 时,我在 iOS 下运行良好的应用程序被锁定。我在 IdTelnet 连接后执行此操作以提供超时。
IdTelnet1.Connect;
sw := TStopWatch.Create; // LOCKUP
sw.Start;
while (sw.ElapsedMilliseconds < 5000) and (not IdTelnet1.Connected) do
Sleep(20);
sw.Stop;
在此先感谢,马丁