Unity.Platform.IPhone.IPhoneServiceLocator.WebViewLoadingFinished C# (CSharp) Method

WebViewLoadingFinished() public static method

public static WebViewLoadingFinished ( UIApplicationState applicationState, NSDictionary options ) : void
applicationState UIApplicationState
options NSDictionary
return void
		public static void WebViewLoadingFinished(UIApplicationState applicationState, NSDictionary options) {
			// informs the UIApplication Weak delegates (if any) about the web view loading finished  event
			var tsEnumerator = typedServices.GetEnumerator ();
			while (tsEnumerator.MoveNext())
			{
				var typedService = tsEnumerator.Current;
				if (typedService.Value is IWeakDelegateManager) {
					(typedService.Value as IWeakDelegateManager).WebViewLoadingFinished (applicationState, options);
				}
			}
		}