UI Kit
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:
viewDidLoadviewWillAppearviewWillLayoutSubviewsviewDidLayoutSubviewsviewDidAppear
Spans
Luciq will automatically show spans and operations that occurred during the View Controller loading; these include:
Network Requests
Database Queries
UI Kit Lifecycle methods
End Screen Loading
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