iOS app events

I can’t seem to find where to access the following methods
application:willFinishLaunchingWithOptions:
application:didFinishLaunchingWithOptions:
applicationDidBecomeActive:
applicationDidEnterBackground:
applicationWillResignActive:
applicationWillEnterForeground:
applicationWillTerminate:

I would expect them to be in the App:Event Handlers but I only have LowMemoryWarning, Open, & UnhandledException

Yes I found it was difficult to create an app without DidBecomeActive and WillResignActive in particular. Jason King provided an ImprovediOSApplication class some time back which added these two events (you just need to change the super of your app to use this class instead of the intrinsic iOSApplication class). I thought this might be in iOSKit but it doesn’t appear to be. Maybe reach out to @Jason King to see if he will send you a copy?