Add code to AppDelegate on iOS
Hey there!
The lifecycle on iOS calles a function in the AppDelegate when starting the App:
application:didFinishLaunchingWithOptions:
I need to add code to this function.
There is a way to inject (overwrite) functions of the AppDelegate with a native extension as suggested here:
My issue is that "didFinishLaunchingWithOptions" is called obviously before i could even start a native extension that could overwrite that.
Is there a way on modifying the AppDelegate when building the app? Or any other way i could execute my own code within this function?
Any hint appreciated!
Cheers
seilz
