Compartilhar via


UIViewController.Add(UIView) Método

Definição

Esse é um alias para AddSubview(UIView), mas usa o padrão Add, pois permite que constructos C# 3.0 adicionem subexibições após a criação do objeto.

public void Add (UIKit.UIView view);
member this.Add : UIKit.UIView -> unit

Parâmetros

view
UIView

A subexibição a ser adicionada.

Comentários

Esse método é equivalente a chamar AddSubview(UIView) neste UIViewControllere está presente para habilitar o C# 3.0 a adicionar subexibições no momento da View criação.

var myView = new MyViewController (new RectangleF (0, 0, 320, 320)){
  new ImageGallery (region [0]),
  new ImageGallery (region [1]),
  new UILabel (new RectangleF (10, 10, 200, 200)){
    Text = "Images from our Trip"
  }
};

Aplica-se a