I have a few simple Segues --> Show(e.g. Push)
On some Segues the first time calling the Segue I get a delay (about 2 Seconds).
There is no Code being Executed on shouldPerformSegue and prepare.
ViewDidLoad of the next View gets called after the Delay.
When the delay occurs I often get this warning:
objc[3993]: Class PLBuildVersion is implemented in both...
There seems to be no solution to this though --> Link
I have also tried calling the Segue Manually like this:
DispatchQueue.main.async {
self.performSegue(withIdentifier: "theIdentifier", sender: theSender)
}
Is there any way to make this more responsive?
Thanks!