ios - 如何在 iPhone 和 iPad 中获得纵向和横向的键盘高度
<p><p>我想处理键盘通知,以便在纵向和横向点击它时上下移动文本字段。如何获得纵向和横向键盘的高度来实现这一点?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>使用此代码</p>
<pre><code>- (void)keyboardWillShow:(NSNotification*)note {
NSDictionary* info = ;
CGSize _kbSize = [ CGRectValue].size;
float kbHeight = _kbSize.width > _kbSize.height ? _kbSize.height : _kbSize.width;
}
</code></pre>
<p>它适用于所有情况。
让我知道它是否有效。</p></p>
<p style="font-size: 20px;">关于ios - 如何在 iPhone 和 iPad 中获得纵向和横向的键盘高度,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/26988820/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/26988820/
</a>
</p>
页:
[1]