Instance Method インスタンスメソッド

publisher(for:object:)

Returns a publisher that emits events when broadcasting notifications. 通知を放送している時にイベントを発布するパブリッシャーを返します。

Declaration 宣言

func publisher(for name: Notification.Name, object: AnyObject? = nil) -> NotificationCenter.Publisher

Parameters パラメータ

name

The name of the notification to publish. 出版する通知の名前。

object

The object posting the named notification. If nil, the publisher emits elements for any object producing a notification with the given name. 名前指定された通知を投函しているオブジェクト。nilならば、パブリッシャーは、この与えられた名前をもつ通知を生み出している何らかのオブジェクトに対して要素を発布します。

Return Value 戻り値

A Publisher that emits events when broadcasting notifications. あるPublisher、それは通知を放送している時にイベントを発布します。

See Also 参照

Receiving Notifications as a Combine Publisher