HomeDocumentationAPI Reference
Getting StartedAPI ReferenceBug ReportingCrash ReportingAPMHelp Center

End Screen Loading

You can manually inform the Instabug SDK that screen loading has ended using the following API. You'll simply need to pass the current View Controller or Activity

APM.endScreenLoading(for viewController: self) // self here is a reference to a UIViewController
[IBGAPM endScreenLoadingForViewController: self]; // self here is a reference to a UIViewController
APM.endScreenLoading(YourActivity.class);
APM.endScreenLoading(Class<T> activityClass)