MonoTouch.Dialog.BooleanElementCell.prepareCell C# (CSharp) 메소드

prepareCell() 개인적인 메소드

private prepareCell ( ) : void
리턴 void
		private void prepareCell(){
			_switch = new UISwitch (){
				BackgroundColor = UIColor.Clear
			};
			_switch.AddTarget (delegate {
				_element.Value = _switch.On;
			}, UIControlEvent.ValueChanged);
			
			AccessoryView = _switch;
		}