我使用xib在我的自定义键盘中加载inputView。我想知道当方向改变时如何改变inputView的高度?

时间:2015-12-17 05:20:50

标签: ios objective-c iphone custom-keyboard

我一直在开发带扩展名的自定义键盘。我想在设备旋转时更改键盘的高度。目前我没有使用大小类只是自动布局约束。提前致谢

1 个答案:

答案 0 :(得分:0)

当您将设备旋转为示例纵向为横向右侧并将Landscap旋转为纵向时。

-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation
{
    if (fromInterfaceOrientation == UIInterfaceOrientationLandscapeRight)
    {
        // change you height constraints here when landscap;
    }
    else if (fromInterfaceOrientation == UIInterfaceOrientationMaskPortrait)
    {
        // change you height constraints here when portrait;
    }
}