Is it possible to display UILabel in Xaml page in Xamarin.Forms?
I take UILabel in ios project,but i want to display this label in xaml page..plzz share your answer..
example:
UILabel label=new UILabel();
public override void ViewDidLoad()
{
base.ViewDidLoad();
View.AddSubview(label);
}