如何更改iOS自定义键盘的高度?

时间:2015-02-18 02:03:47

标签: ios objective-c ios8 keyboard

我一直在研究iOS自定义键盘(在.xib文件中),但我无法在故事板中更改高度。有没有办法在故事板中更改键盘的高度,还是我必须找到一种以编程方式进行操作的方法?

3 个答案:

答案 0 :(得分:7)

这是我的解决方案Apple Documentation建议:

  

您可以使用“自动布局”调整自定义键盘主视图的高度。默认情况下,根据屏幕大小和设备方向,自定义键盘的大小可与系统键盘匹配。系统始终将自定义键盘的宽度设置为等于当前屏幕宽度。要调整自定义键盘的高度,请更改其主视图的高度约束。

 override func viewWillAppear(animated: Bool) {
    let desiredHeight:CGFloat!
    if UIDevice.currentDevice().userInterfaceIdiom == .Phone{
            desiredHeight = 259
    }else{
        if UIDevice.currentDevice().orientation == .Portrait{
            desiredHeight = 260
        }else {
            desiredHeight = 300
        }
    }
    let heightConstraint = NSLayoutConstraint(item: view, attribute: NSLayoutAttribute.Height, relatedBy: NSLayoutRelation.Equal, toItem: nil, attribute: NSLayoutAttribute.NotAnAttribute, multiplier: 1.0, constant: desiredHeight)
    view.addConstraint(heightConstraint)

}

文档说,您可以在布局后调整键盘高度,这样就可以使用viewWillAppear来完成。

答案 1 :(得分:1)

您想要查看此网站。它提供了很多信息! custom keyboard

答案 2 :(得分:0)

在iOS 9中,向UIInputView类添加了属性allowsSelfSizing,默认为NO。设置为YES时,iOS不会添加高度限制,该高度限制等于默认键盘的高度。在这种情况下,您有责任提供足够的约束来确定高度(因此至少需要一个子视图)。