Exemplo n.º 1
0
        private static BlinkySquareView AddBlinkySquareView(UIView parent)
        {
            var blinkySquareView = new BlinkySquareView();

            parent.AddSubview(blinkySquareView);
            return(blinkySquareView);
        }
Exemplo n.º 2
0
 private void AddViews()
 {
     _initiatingLabel  = this.AddLabel("", 20, UIColor.White);
     _counterLabel     = this.AddLabel("", 40, UIColor.White);
     _watch            = UIImage.FromBundle("Watch");
     _watchImageView   = AddImageView(this, _watch);
     _counterView      = AddCounterView(this);
     _row1Cursor       = AddBlinkySquareView(this);
     _row2Cursor       = AddBlinkySquareView(this);
     _codeStringsScene = AddCodeStringsView(this);
 }