菜鸟教程小白 发表于 2022-12-12 22:38:52

iphone - 如何在 iOS 的 UIDatePicker 中阻止天数


                                            <p><p>我在我的 IOS 应用程序上使用日期选择器,我想知道是否可以阻止某些日子。例如,我需要阻止一年中的所有星期一,这可能吗?</p>

<p>谢谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您唯一能做的就是添加自定义 UIPickerView,如注释中所述,或实现为事件 <code>UIControlEventValueChanged</code> 调用的方法,如 <a href="http://developer.apple.com/library/ios/#DOCUMENTATION/UIKit/Reference/UIDatePicker_Class/Reference/UIDatePicker.html" rel="noreferrer noopener nofollow">here</a> 所述</p>

<p>然后检查有效工作日的新值。您可以通过以下方式获得工作日:</p>

<pre><code>NSCalendar* calendar = ;
NSDateComponents* components = ];
return ; // 1 = Sunday, 2 = Monday, ...
</code></pre>

<p>无法在滚轮中隐藏某些日子。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 如何在 iOS 的 UIDatePicker 中阻止天数,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/12206336/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/12206336/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 如何在 iOS 的 UIDatePicker 中阻止天数