安装RVM后,如何去除终端中的信息

问题描述

   public override void ViewDidLoad()
    {
        // Why does it crash when I call base.ViewDidLoad() ?
        this.Request = MvxviewmodelRequest<SignInviewmodel>.GetDefaultRequest();
        base.ViewDidLoad();

        NavigationController.NavigationBar.BarTintColor = UIColor.Blue;

        var label = new UILabel();
        label.Text = "test";
        label.BackgroundColor = UIColor.Red;
        label.Frame = new CoreGraphics.CGRect(30,100,100);

        View.Add(label);

        // This does not seem to work. If I remove it,label.Text will be "test"
        var set = this.CreateBindingSet<SignInViewController,SignInviewmodel>();
        set.Bind(label).For("Text").To(vm => vm.Username);
        set.Apply();
    }

不管我输入什么,上面的信息都会在中断中回显,太烦人了,怎么去掉

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)