菜鸟教程小白 发表于 2022-12-13 09:51:19

ios - 调用`[UISearchBar setReturnKeyType:]`时无法识别的选择器


                                            <p>在我们的应用中,对于iOS 7.0、7.0.4和7.0.6用户,我们开始遇到以下错误:<br><code>-: unrecognized selector sent to instance 0x178a7920</code><br>由于Xcode 6.4不再支持7.0、7.0.4和7.0.6模拟器,我们花了点时间弄清楚发生了什么。解释在下面共享。</p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p>我们从<code>UISearchBar.h</code>的文档中意识到:<br><br>... UISearchBar在iOS 8.0中正式符合<code>UITextInputTraits</code>并在iOS 7.0中 private 符合...<br><br>因此8.x对<code>UITextInputTraits</code>具有 public /完全支持,但iOS的7.x版本仅对此提供了 private /潜在的部分支持。<br><br>我们开始使用不同的iOS 7.x版本,发现等于或大于iOS 7.1的版本确实支持<code>setReturnKeyType:</code>,而较早的版本则不支持。<br><br>似乎<a href="https://stackoverflow.com/questions/8583463/uisearchbar-keyboard-return-key" rel="noreferrer noopener nofollow">a different method</a>在iOS 7的早期版本中使用了(请参阅链接中第二受欢迎的答案),这似乎证实了我们的结论。<br><br>因此,对于iOS 7.x版本,我们最终使用了以下命令:<br><pre><code>if () {
    searchBar.returnKeyType = UIReturnKeyDone; // Pick a type
} else {
    // Call the method from the linked answer above for iOS &lt; 7.1
    // or leave the return key type unchanged.
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 调用``时无法识别的选择器,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31996624/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31996624/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 调用`[UISearchBar setReturnKeyType:]`时无法识别的选择器