菜鸟教程小白 发表于 2022-12-12 18:36:41

ios - 如何测试 UIKeyboardTypeDecimalPad 是否可用?


                                            <p><p>根据<a href="http://developer.apple.com/library/IOs/#documentation/UIKit/Reference/UITextInputTraits_Protocol/Reference/UITextInputTraits.html" rel="noreferrer noopener nofollow">UITextInputTraits Protocol Reference</a> ,UIKeyboardTypeDecimalPad 是“在 iOS 4.1 及更高版本中可用。”</p>

<p>我目前正在使用 <a href="https://stackoverflow.com/questions/3339722/check-iphone-ios-version" rel="noreferrer noopener nofollow">How to check iOS version?</a> 中的系统版本控制预处理器宏检查我的应用程序是否在 iOS 4.1 及更高版本中运行,但我想知道...</p>

<p>是否有更好的方法来测试此键盘的可用性?我无法测试选择器“setKeyboardType”的可用性,因为它总是返回 YES。我需要测试 UIKeyboardType 枚举之一是否可用。</p>

<p>有什么想法吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>试试这个:</p>

<pre><code>    yourTextField.keyboardType = UIKeyboardTypeNumbersAndPunctuation;
    if (([[ systemVersion] doubleValue] &gt;= 4.1)) {
      yourTextField.keyboardType = UIKeyboardTypeDecimalPad;
    }
</code></pre>

<p>这是检查设备上运行的 iOS 版本是否足够"new"。也就是说,带有小数点按钮的小键盘在iOS4.1中是可用的。因此,该版本或之后的任何 iOS 版本都有它。</p>

<p>该技术是(松散地)“基于版本的能力测试”。还有其他类似的能力测试技术,例如检查一个类是否响应特定的选择器,在其他情况下也很有效。</p>

<p>通常,检查您要使用的特定选择器的可用性比检查版本号要好。但在常量的情况下,检查底层操作系统的版本(在我看来)同样好。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何测试 UIKeyboardTypeDecimalPad 是否可用?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/8564660/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/8564660/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何测试 UIKeyboardTypeDecimalPad 是否可用?