UIAttachmentBehavior Constructors

Definition

Overloads

UIAttachmentBehavior(NSObjectFlag)

Constructor to call on derived classes to skip initialization and merely allocate the object.

UIAttachmentBehavior(IntPtr)

A constructor used when creating managed representations of unmanaged objects; Called by the runtime.

UIAttachmentBehavior(IUIDynamicItem, CGPoint)

Constructs an attachment behavior connecting a specific point in one dynamic item to an anchor point of a second dynamic item.

UIAttachmentBehavior(IUIDynamicItem, IUIDynamicItem)

Constructs an attachment behavior connecting the center point of one dynamic item to the center point of a second dynamic item.

UIAttachmentBehavior(IUIDynamicItem, UIOffset, CGPoint)

Constructs an attachment behavior connecting a specific point in one dynamic item to an anchor point of a second dynamic item.

UIAttachmentBehavior(IUIDynamicItem, UIOffset, IUIDynamicItem, UIOffset)

Constructs an attachment behavior connecting a specific point in one dynamic item to a specific point in a second dynamic item.

UIAttachmentBehavior(NSObjectFlag)

Constructor to call on derived classes to skip initialization and merely allocate the object.

protected UIAttachmentBehavior (Foundation.NSObjectFlag t);
new UIKit.UIAttachmentBehavior : Foundation.NSObjectFlag -> UIKit.UIAttachmentBehavior

Parameters

t
NSObjectFlag

Unused sentinel value, pass NSObjectFlag.Empty.

Remarks

This constructor should be called by derived classes when they completely construct the object in managed code and merely want the runtime to allocate and initialize the NSObject. This is required to implement the two-step initialization process that Objective-C uses, the first step is to perform the object allocation, the second step is to initialize the object. When developers invoke the constructor that takes the NSObjectFlag.Empty they take advantage of a direct path that goes all the way up to NSObject to merely allocate the object's memory and bind the Objective-C and C# objects together. The actual initialization of the object is up to the developer.

This constructor is typically used by the binding generator to allocate the object, but prevent the actual initialization to take place. Once the allocation has taken place, the constructor has to initialize the object. With constructors generated by the binding generator this means that it manually invokes one of the "init" methods to initialize the object.

It is the developer's responsibility to completely initialize the object if they chain up using the NSObjectFlag.Empty path.

In general, if the developer's constructor invokes the NSObjectFlag.Empty base implementation, then it should be calling an Objective-C init method. If this is not the case, developers should instead chain to the proper constructor in their class.

The argument value is ignored and merely ensures that the only code that is executed is the construction phase is the basic NSObject allocation and runtime type registration. Typically the chaining would look like this:

//
// The NSObjectFlag merely allocates the object and registers the
// C# class with the Objective-C runtime if necessary, but no actual
// initXxx method is invoked, that is done later in the constructor
//
// This is taken from Xamarin.iOS's source code:
//
[Export ("initWithFrame:")]
public UIView (System.Drawing.RectangleF frame) : base (NSObjectFlag.Empty)
{
// Invoke the init method now.
	var initWithFrame = new Selector ("initWithFrame:").Handle;
	if (IsDirectBinding)
		Handle = ObjCRuntime.Messaging.IntPtr_objc_msgSend_CGRect (this.Handle, initWithFrame, frame);
	else
		Handle = ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper_CGRect (this.SuperHandle, initWithFrame, frame);
}

Applies to

UIAttachmentBehavior(IntPtr)

A constructor used when creating managed representations of unmanaged objects; Called by the runtime.

protected internal UIAttachmentBehavior (IntPtr handle);
new UIKit.UIAttachmentBehavior : nativeint -> UIKit.UIAttachmentBehavior

Parameters

handle
IntPtr

nativeint

Pointer (handle) to the unmanaged object.

Remarks

This constructor is invoked by the runtime infrastructure (GetNSObject(IntPtr)) to create a new managed representation for a pointer to an unmanaged Objective-C object. Developers should not invoke this method directly, instead they should call the GetNSObject method as it will prevent two instances of a managed object to point to the same native object.

Applies to

UIAttachmentBehavior(IUIDynamicItem, CGPoint)

Constructs an attachment behavior connecting a specific point in one dynamic item to an anchor point of a second dynamic item.

[Foundation.Export("initWithItem:attachedToAnchor:")]
public UIAttachmentBehavior (UIKit.IUIDynamicItem item, CoreGraphics.CGPoint anchorPoint);
new UIKit.UIAttachmentBehavior : UIKit.IUIDynamicItem * CoreGraphics.CGPoint -> UIKit.UIAttachmentBehavior

Parameters

item
IUIDynamicItem

Dynamic item to which an attachment behavior is being applied.

anchorPoint
CGPoint

Anchor point for the specified attachment behavior.

Attributes

Applies to

UIAttachmentBehavior(IUIDynamicItem, IUIDynamicItem)

Constructs an attachment behavior connecting the center point of one dynamic item to the center point of a second dynamic item.

[Foundation.Export("initWithItem:attachedToItem:")]
public UIAttachmentBehavior (UIKit.IUIDynamicItem item, UIKit.IUIDynamicItem attachedToItem);
new UIKit.UIAttachmentBehavior : UIKit.IUIDynamicItem * UIKit.IUIDynamicItem -> UIKit.UIAttachmentBehavior

Parameters

item
IUIDynamicItem

Initial dynamic item that is connected by the attachment behavior.

attachedToItem
IUIDynamicItem

Subsequent dynamic item that is connected by the attachment behavior.

Attributes

Applies to

UIAttachmentBehavior(IUIDynamicItem, UIOffset, CGPoint)

Constructs an attachment behavior connecting a specific point in one dynamic item to an anchor point of a second dynamic item.

[Foundation.Export("initWithItem:offsetFromCenter:attachedToAnchor:")]
[ObjCRuntime.DesignatedInitializer]
public UIAttachmentBehavior (UIKit.IUIDynamicItem item, UIKit.UIOffset offset, CoreGraphics.CGPoint anchorPoint);
new UIKit.UIAttachmentBehavior : UIKit.IUIDynamicItem * UIKit.UIOffset * CoreGraphics.CGPoint -> UIKit.UIAttachmentBehavior

Parameters

item
IUIDynamicItem

Initial dynamic item to which an attachment behavior is being applied.

offset
UIOffset

Specified point, inside the initial dynamic item and described as an offset from the initial item's center point, for the attachment.

anchorPoint
CGPoint

Anchor point for the specified attachment behavior.

Attributes

Applies to

UIAttachmentBehavior(IUIDynamicItem, UIOffset, IUIDynamicItem, UIOffset)

Constructs an attachment behavior connecting a specific point in one dynamic item to a specific point in a second dynamic item.

[Foundation.Export("initWithItem:offsetFromCenter:attachedToItem:offsetFromCenter:")]
[ObjCRuntime.DesignatedInitializer]
public UIAttachmentBehavior (UIKit.IUIDynamicItem item, UIKit.UIOffset offsetFromCenter, UIKit.IUIDynamicItem attachedToItem, UIKit.UIOffset attachOffsetFromCenter);
new UIKit.UIAttachmentBehavior : UIKit.IUIDynamicItem * UIKit.UIOffset * UIKit.IUIDynamicItem * UIKit.UIOffset -> UIKit.UIAttachmentBehavior

Parameters

item
IUIDynamicItem

Initial dynamic item to which an attachment behavior is being applied.

offsetFromCenter
UIOffset

Specified point, inside the initial dynamic item and described as an offset from the initial item's center point, for the attachment.

attachedToItem
IUIDynamicItem

Subsequent dynamic item that is connected by the attachment behavior.

attachOffsetFromCenter
UIOffset

Specified point, inside the ssecond dynamic item and described as an offset from the second item's center point, for the attachment.

Attributes

Applies to