For the complete documentation index, see llms.txt. This page is also available as Markdown.

Start UI Trace

API reference for starting UI hang traces in Luciq. Manually mark the beginning of a UI trace to measure the duration of potential UI freezes.

Use the following APIs to start a custom UI trace while passing a string that defines the name of the trace.

APM.startUITrace(withName: "name")
[LCQAPM startUITraceWithName:@"name"];
// Start UI Trace
APM.startUITrace("name");
// Start UI Trace
APM.startUITrace("name")
APM.startUITrace("name");
APM.startUITrace('trace_name');

Last updated