菜鸟教程小白 发表于 2022-12-12 10:15:19

ios - Xamarin iOS 24 小时时间选择器


                                            <p><p>我正在尝试在 iOS 上获得 24 小时时间选择器,以便我可以使用它来插入持续时间。</p>

<p>在 android 上,我通过使用自定义渲染器得到了我想要的。
在 iOS 上,我还使用了自定义渲染器(参见下面的代码),正如我发现的那样
在网上。问题是它只在 24 中查看选择器对话框
小时,而不是设定的时间。 </p>

<pre><code>   

    namespace IsalaSportmonitor.iOS.View.Controls
    {
      class CustomTimePicker : TimePickerRenderer
      {
            protected override void OnElementChanged(ElementChangedEventArgs&lt;TimePicker&gt; e)
            {
                base.OnElementChanged(e);
                var timePicker = (UIDatePicker)Control.InputView;
                timePicker.Locale = new NSLocale(&#34;no_db&#34;);
            }

      }
    }
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>试着检查一下:</p>

<pre><code>using MonoTouch.Foundation;
using MonoTouch.UIKit;
using Xamarin.Forms;
using Xamarin.Forms.Platform.iOS;
using PersonalTrainer.iOS.View.Controls;



namespace YourNamespace.iOS.View.Controls {
    public class TimePicker24HRenderer : TimePickerRenderer {
      protected override void OnElementChanged(ElementChangedEventArgs&lt;TimePicker&gt; e) {
            base.OnElementChanged(e);
            var timePicker = (UIDatePicker)Control.InputView;
            timePicker.Locale = new NSLocale(&#34;no_nb&#34;);
      }
    }
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Xamarin iOS 24 小时时间选择器,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/34944470/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/34944470/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Xamarin iOS 24 小时时间选择器