ModeをCountDownTimerに設定して新しいUIDatePickerを作成すると、黒い背景で表示が不十分になります。誰もが洞察力を持っていますか? IOS:UIDatePickerが黒い背景でうまくレンダリングされない
ノーマルピッカーは次のようになります。
CODE:
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);
ポストまでの高さは、使用しているコード200
変更に高さを設定しています。 – WrightsCS
私は上記のコードを掲載しました。 –