UIView.AddSubviews(UIView[]) Method

Definition

Convenience routine to add various views to a UIView.

public void AddSubviews (params UIKit.UIView[] views);
member this.AddSubviews : UIKit.UIView[] -> unit

Parameters

views
UIView[]

An array of zero or more UIViews.

Remarks

This is merely a convenience routine that allows the application developer to add a number of views in a single call.

myView.AddSubviews (label, button, entry, image1, image2);

Applies to