如何使用点击手势放置文本字段位置

时间:2016-01-05 07:56:20

标签: ios swift uiscrollview uitextfield

<form action='/login' method='post'>
...
</form>

我的hideKeyboard功能正常。但是现在我想点击键盘上方文本区域的位置。

2 个答案:

答案 0 :(得分:1)

试试这个:

func textFieldShouldBeginEditing(textField: UITextField) -> Bool{
    scrl.setContentOffset(CGPointMake(0.0, textField.center.y-120), animated: true)
}

您的func hideKeyboard()应该保持不变 希望它对你有帮助

答案 1 :(得分:0)

您可以为项目使用 IQkeyboardmanger 第三方库,以下是此链接https://github.com/hackiftekhar/IQKeyboardManager