0
你好我試圖讓我的兩個UITextFields的鍵盤在用戶點擊鍵盤時隱藏。我需要兩個文本域都有相同的方法。我怎樣才能做到這一點,而不復制它們並給Xcode和錯誤? 謝謝!兩個具有相同隱藏方法的UITextFields
下面是我用於我的第一個textfield的方法,我需要我的另一個相同的方法。
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
UITouch *touch = [[event allTouches] anyObject];
if ([text1 isFirstResponder] && [touch view] != text1) {
[text1 resignFirstResponder];
}
[super touchesBegan:touches withEvent:event];
}
你試過了什麼? – greymouser