UISegmentedControl Constructors

Definition

Overloads

UISegmentedControl()

Default constructor that initializes a new instance of this class with no parameters.

UISegmentedControl(CGRect)

Initializes the UISegmentedControl with the specified frame.

UISegmentedControl(NSArray)

Creates a new segmented control with the titles or images that are contained in the provided array.

UISegmentedControl(NSCoder)

A constructor that initializes the object from the data stored in the unarchiver object.

UISegmentedControl(NSObjectFlag)

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

UISegmentedControl(NSString[])

Creates a new segmented control with the titles in the provided array.

UISegmentedControl(IntPtr)

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

UISegmentedControl(Object[])

Creates a UISegmentedControl by passing an array containing strings or UIImage objects.

UISegmentedControl(String[])

Creates a new segmented control with the titles in the provided array.

UISegmentedControl(UIImage[])

Creates a new segmented control with the images in the provided array.

UISegmentedControl()

Default constructor that initializes a new instance of this class with no parameters.

[Foundation.Export("init")]
public UISegmentedControl ();
Attributes

Applies to

UISegmentedControl(CGRect)

Initializes the UISegmentedControl with the specified frame.

[Foundation.Export("initWithFrame:")]
public UISegmentedControl (CoreGraphics.CGRect frame);
new UIKit.UISegmentedControl : CoreGraphics.CGRect -> UIKit.UISegmentedControl

Parameters

frame
CGRect

Frame used by the view, expressed in iOS points.

Attributes

Remarks

This constructor is used to programmatically create a new instance of UISegmentedControl with the specified dimension in the frame. The object will only be displayed once it has been added to a view hierarchy by calling AddSubview in a containing view.

This constructor is not invoked when deserializing objects from storyboards or XIB filesinstead the constructor that takes an NSCoder parameter is invoked.

Applies to

UISegmentedControl(NSArray)

Creates a new segmented control with the titles or images that are contained in the provided array.

[Foundation.Export("initWithItems:")]
public UISegmentedControl (Foundation.NSArray items);
new UIKit.UISegmentedControl : Foundation.NSArray -> UIKit.UISegmentedControl

Parameters

items
NSArray
Attributes

Applies to

UISegmentedControl(NSCoder)

A constructor that initializes the object from the data stored in the unarchiver object.

[Foundation.Export("initWithCoder:")]
[ObjCRuntime.DesignatedInitializer]
public UISegmentedControl (Foundation.NSCoder coder);
new UIKit.UISegmentedControl : Foundation.NSCoder -> UIKit.UISegmentedControl

Parameters

coder
NSCoder

The unarchiver object.

Attributes

Remarks

This constructor is provided to allow the class to be initialized from an unarchiver (for example, during NIB deserialization). This is part of the NSCoding protocol.

If developers want to create a subclass of this object and continue to support deserialization from an archive, they should implement a constructor with an identical signature: taking a single parameter of type NSCoder and decorate it with the [Export("initWithCoder:"] attribute declaration.

The state of this object can also be serialized by using the companion method, EncodeTo.

Applies to

UISegmentedControl(NSObjectFlag)

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

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

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

UISegmentedControl(NSString[])

Creates a new segmented control with the titles in the provided array.

public UISegmentedControl (params Foundation.NSString[] strings);
new UIKit.UISegmentedControl : Foundation.NSString[] -> UIKit.UISegmentedControl

Parameters

strings
NSString[]

Applies to

UISegmentedControl(IntPtr)

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

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

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

UISegmentedControl(Object[])

Creates a UISegmentedControl by passing an array containing strings or UIImage objects.

public UISegmentedControl (params object[] args);
new UIKit.UISegmentedControl : obj[] -> UIKit.UISegmentedControl

Parameters

args
Object[]

Array of strings or UIImage objects to use in the control.

Applies to

UISegmentedControl(String[])

Creates a new segmented control with the titles in the provided array.

public UISegmentedControl (params string[] strings);
new UIKit.UISegmentedControl : string[] -> UIKit.UISegmentedControl

Parameters

strings
String[]

Applies to

UISegmentedControl(UIImage[])

Creates a new segmented control with the images in the provided array.

public UISegmentedControl (params UIKit.UIImage[] images);
new UIKit.UISegmentedControl : UIKit.UIImage[] -> UIKit.UISegmentedControl

Parameters

images
UIImage[]

Applies to