Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Show Foreground Notifications / Get Foreground Notifications state


Code Block
titleExample
function showOrHideForegroundNotificationOnIos10(key:Boolean) {
   	_appoxeeANE.setShowForegroundNotifications(key,setShowNotificationsCallback);	
}




private function setShowNotificationsCallback(result:String):void {
	
	var res:Boolean = _appoxeeANE.getShowForegroundNotifications();
	//Result is the returned value, as string
}

...