Cuando creo un nuevo UIDatePicker con su modo configurado como CountDownTimer, se procesa mal con un fondo negro. Alguien tiene alguna idea? IOS: UIDatePicker se muestra mal con un fondo negro
normal Selector se parece a esto:
CÓDIGO: Nota del UIButton es un botón de pantalla completa detrás del selector para desestimar la vista
intervalPicker = new UIDatePicker(new RectangleF(0, this.tvc.View.Bounds.Height - 135, this.tvc.View.Bounds.Width, 200));
intervalPicker.Mode = UIDatePickerMode.CountDownTimer;
intervalPicker.CountDownDuration = DeviceSession.CurrentBehavioralEvent.Duration*60;
intervalPicker.ValueChanged += new EventHandler(intervalPicker_EditingChanged);
UIButton b = UIButton.FromType(UIButtonType.Custom);
b.Opaque = false;
b.BackgroundColor = UIColor.Clear;
b.Frame = new RectangleF(0, 0, this.tvc.View.Bounds.Width, this.tvc.View.Bounds.Height);
b.TouchUpInside += (o, s) => {
intervalPicker.RemoveFromSuperview();
b.RemoveFromSuperview();
};
this.tvc.NavigationController.View.AddSubview(b);
this.tvc.NavigationController.View.AddSubview(intervalPicker);
enviar el código que está utilizando. – WrightsCS
He publicado el código anterior. –