最近我用這個移動瀏覽鍵盤的背面當文本字段選擇移動查看鍵盤的背面當文本框選擇
http://www.ioscreator.com/tutorials/move-view-behind-keyboard-ios8-swift
如果我只需要進行一些投入移動看來,別人接近頂部和唐不需要它?我嘗試了下面的代碼,但沒有成功。
var searcher
func keyboardWillShow(notification: NSNotification) {
if (searcher.tag == 1){
if let userInfo = notification.userInfo {
if let keyboardSize = (userInfo[UIKeyboardFrameBeginUserInfoKey] as? NSValue)?.CGRectValue() {
kbHeight = keyboardSize.height
self.animateTextField(true)
}
}
}
}
在此先感謝!
我怎麼安裝它!? –
@AhmedSafadi您可以在存儲庫的自述文件中找到安裝說明。 – mathielo
問題是,我應該使用常量,我不想這樣做 –