// 版本号码:前3码是对应原生SDK版号,后1码是Nuget上传版号
public override void ViewDidLoad()
{
base.ViewDidLoad();
var btn1 = new UIButton()
{
BackgroundColor = new UIColor(0,0,255,255),
Frame = new CoreGraphics.CGRect(50, 50, 200, 100)
};
btn1.SetTitle ("Order",...
More information