Slide 16
Slide 16 text
@ObjectBinding
BindableObject
に適合したオブジェクトは@ObjectBindingを使用す
ることで更新検知できるようになる
public protocol BindableObject :
AnyObject,
DynamicViewProperty,
Identifiable,
_BindableObjectViewProperty
{
associatedtype PublisherType : Publisher
where Self.PublisherType.Failure == Never
var didChange: Self.PublisherType { get }
}