BBGamelib.NSNotificationCenter.postNotification C# (CSharp) Method

postNotification() public method

public postNotification ( string name, System sender, NSDictionary userInfo = null ) : void
name string
sender System
userInfo NSDictionary
return void
		public void postNotification(string name, System.Object sender, NSDictionary userInfo=null){
			NSNotification notification = new NSNotification (name, sender, userInfo);
			postNotification (notification);
		}

Same methods

NSNotificationCenter::postNotification ( NSNotification n ) : void