UI Kit
Spans
End Screen Loading
APM.endScreenLoading(for viewController: self) // self here is a reference to a UIViewControllerLast updated
Luciq automatically captures the time it takes for any UI Kit screen to load. This covers the time for any View Controller between viewDidLoad and viewDidAppear, which includes the following lifecycle methods:
viewDidLoad
viewWillAppear
viewWillLayoutSubviews
viewDidLayoutSubviews
viewDidAppear
Luciq will automatically show spans and operations that occurred during the View Controller loading; these include:
Network Requests
Database Queries
UI Kit Lifecycle methods
You can also define custom points in each View Controller to manually inform the SDK that screen loading has ended.
APM.endScreenLoading(for viewController: self) // self here is a reference to a UIViewController
Last updated