共用方式為


NSNotification.FromName 方法

定義

多載

FromName(String, NSObject)

使用名稱和物件承載建立新的 NSNotification。

FromName(String, NSObject, NSDictionary)

使用名稱、物件和字典承載,建立新的 NSNotification。

FromName(String, NSObject)

使用名稱和物件承載建立新的 NSNotification。

[Foundation.Export("notificationWithName:object:")]
public static Foundation.NSNotification FromName (string name, Foundation.NSObject obj);
static member FromName : string * Foundation.NSObject -> Foundation.NSNotification

參數

name
String

通知的名稱。

obj
NSObject

要攜帶的物件資料。

這個參數可以是 null

傳回

屬性

適用於

FromName(String, NSObject, NSDictionary)

使用名稱、物件和字典承載,建立新的 NSNotification。

[Foundation.Export("notificationWithName:object:userInfo:")]
public static Foundation.NSNotification FromName (string name, Foundation.NSObject obj, Foundation.NSDictionary userInfo);
static member FromName : string * Foundation.NSObject * Foundation.NSDictionary -> Foundation.NSNotification

參數

name
String

通知的名稱。

obj
NSObject

要攜帶的物件資料。

這個參數可以是 null

userInfo
NSDictionary

具有額外資訊的字典。

這個參數可以是 null

傳回

屬性

適用於