The application is about to terminate (from a state other than suspended)

Redef to save data if appropriate.

Property definitions

ios :: app $ App :: will_terminate
	# The application is about to terminate (from a state other than suspended)
	#
	# Redef to save data if appropriate.
	fun will_terminate
	do
		# Usually a forced termination by the system
		on_save_state
		on_pause
		on_stop
	end
lib/ios/app.nit:190,2--199,4