Redef this method to customize the behavior.
	# The application just launched but is not yet displayed to the user
	#
	# Redef this method to customize the behavior.
	fun did_finish_launching_with_options: Bool
	do
		on_create
		on_restore_state
		return true
	end
					lib/ios/app.nit:139,2--147,4
				
	redef fun did_finish_launching_with_options
	do
		return app_delegate.hello_world
	end
					lib/ios/examples/hello_ios.nit:26,2--29,4
				
	redef fun did_finish_launching_with_options
	do
		app_delegate.window = new UIWindow
		app_delegate.window.background_color = new UIColor.white_color
		super
		app_delegate.window.make_key_and_visible
		return true
	end
					lib/ios/ui/ui.nit:95,2--102,4
				
	redef fun did_finish_launching_with_options
	do
		create_gamnit
		create_scene
		return super
	end
					lib/gamnit/gamnit_ios.nit:24,2--29,4