Mode'unu bir CountDownTimer olarak ayarlayarak yeni bir UIDatePicker oluşturduğumda, siyah bir arka plan oluşturuyor. Herhangi bir fikir sahibi olan var mı? IOS: UIDatePicker, siyah arka planla zayıf bir şekilde işleniyor
Normal Seçici şuna benzer:
KODU: UIButton Arkadan görünüş
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);
için 200
Değişim yüksekliği için yükseklik ayarlıyor. – WrightsCS
Yukarıdaki kodu yayınladım. –