Share via


IUICollisionBehaviorDelegate Interface

Definition

This interface represents the Objective-C protocol UICollisionBehaviorDelegate.

[Foundation.Protocol(Name="UICollisionBehaviorDelegate", WrapperType=typeof(UIKit.UICollisionBehaviorDelegateWrapper))]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="BeganContact", ParameterByRef=new System.Boolean[] { false, false, false, false }, ParameterType=new System.Type[] { typeof(UIKit.UICollisionBehavior), typeof(UIKit.IUIDynamicItem), typeof(UIKit.IUIDynamicItem), typeof(CoreGraphics.CGPoint) }, Selector="collisionBehavior:beganContactForItem:withItem:atPoint:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="EndedContact", ParameterByRef=new System.Boolean[] { false, false, false }, ParameterType=new System.Type[] { typeof(UIKit.UICollisionBehavior), typeof(UIKit.IUIDynamicItem), typeof(UIKit.IUIDynamicItem) }, Selector="collisionBehavior:endedContactForItem:withItem:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="BeganBoundaryContact", ParameterByRef=new System.Boolean[] { false, false, false, false }, ParameterType=new System.Type[] { typeof(UIKit.UICollisionBehavior), typeof(UIKit.IUIDynamicItem), typeof(Foundation.NSObject), typeof(CoreGraphics.CGPoint) }, Selector="collisionBehavior:beganContactForItem:withBoundaryIdentifier:atPoint:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="EndedBoundaryContact", ParameterByRef=new System.Boolean[] { false, false, false }, ParameterType=new System.Type[] { typeof(UIKit.UICollisionBehavior), typeof(UIKit.IUIDynamicItem), typeof(Foundation.NSObject) }, Selector="collisionBehavior:endedContactForItem:withBoundaryIdentifier:")]
public interface IUICollisionBehaviorDelegate : IDisposable, ObjCRuntime.INativeObject
[<Foundation.Protocol(Name="UICollisionBehaviorDelegate", WrapperType=typeof(UIKit.UICollisionBehaviorDelegateWrapper))>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="BeganContact", ParameterByRef=new System.Boolean[] { false, false, false, false }, ParameterType=new System.Type[] { typeof(UIKit.UICollisionBehavior), typeof(UIKit.IUIDynamicItem), typeof(UIKit.IUIDynamicItem), typeof(CoreGraphics.CGPoint) }, Selector="collisionBehavior:beganContactForItem:withItem:atPoint:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="EndedContact", ParameterByRef=new System.Boolean[] { false, false, false }, ParameterType=new System.Type[] { typeof(UIKit.UICollisionBehavior), typeof(UIKit.IUIDynamicItem), typeof(UIKit.IUIDynamicItem) }, Selector="collisionBehavior:endedContactForItem:withItem:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="BeganBoundaryContact", ParameterByRef=new System.Boolean[] { false, false, false, false }, ParameterType=new System.Type[] { typeof(UIKit.UICollisionBehavior), typeof(UIKit.IUIDynamicItem), typeof(Foundation.NSObject), typeof(CoreGraphics.CGPoint) }, Selector="collisionBehavior:beganContactForItem:withBoundaryIdentifier:atPoint:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="EndedBoundaryContact", ParameterByRef=new System.Boolean[] { false, false, false }, ParameterType=new System.Type[] { typeof(UIKit.UICollisionBehavior), typeof(UIKit.IUIDynamicItem), typeof(Foundation.NSObject) }, Selector="collisionBehavior:endedContactForItem:withBoundaryIdentifier:")>]
type IUICollisionBehaviorDelegate = interface
    interface INativeObject
    interface IDisposable
Derived
Attributes
Implements

Remarks

A class that implements this interface (and subclasses NSObject) will be exported to Objective-C as implementing the Objective-C protocol this interface represents.

A class may also implement members from this interface to implement members from the protocol.

Properties

Name Description
Handle

Handle (pointer) to the unmanaged object representation.

(Inherited from INativeObject)

Methods

Name Description
BeganBoundaryContact(UICollisionBehavior, IUIDynamicItem, NSObject, CGPoint)

Indicates that boundary contact has begun between the dynamicItem and the boundaryIdentifier.

BeganContact(UICollisionBehavior, IUIDynamicItem, IUIDynamicItem, CGPoint)

Indicates that contact between dynamic items has begun.

EndedBoundaryContact(UICollisionBehavior, IUIDynamicItem, NSObject)

Indicates that the dynamicItem has stopped contacting the boundary.

EndedContact(UICollisionBehavior, IUIDynamicItem, IUIDynamicItem)

Indicates that the two dynamic items have stopped contacting each other.

Extension Methods

Name Description
GetHandle(INativeObject)
GetNonNullHandle(INativeObject, String)
BeganBoundaryContact(IUICollisionBehaviorDelegate, UICollisionBehavior, IUIDynamicItem, NSObject, CGPoint)

Indicates that boundary contact has begun between the dynamicItem and the boundaryIdentifier.

BeganContact(IUICollisionBehaviorDelegate, UICollisionBehavior, IUIDynamicItem, IUIDynamicItem, CGPoint)

Indicates that contact between dynamic items has begun.

EndedBoundaryContact(IUICollisionBehaviorDelegate, UICollisionBehavior, IUIDynamicItem, NSObject)

Indicates that the dynamicItem has stopped contacting the boundary.

EndedContact(IUICollisionBehaviorDelegate, UICollisionBehavior, IUIDynamicItem, IUIDynamicItem)

Indicates that the two dynamic items have stopped contacting each other.

Applies to