對於iphone應用程序使長文本輸入,我們使用UITextView。但鍵盤如何返回。 [textView resignFirstResponder]不適用於UITextView。textView resignFirstResponder不起作用
回答
在您的界面中聲明UITextViewDelegate協議。然後執行委託方法
- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text {
if([text isEqualToString:@"\n"]) {
[textView resignFirstResponder];
return NO;
}
return YES;
}
如果我的答案幫助你,然後PLZ通過勾選接受它。 – 2012-07-24 05:25:03
是的它的權利,但在這個代碼中,你使文本=新行然後它的return.so,如果我們在我們的文本中給我們一些線我們如何得到它..當我們給新行它返回。 – Nims 2012-07-24 05:45:08
@Nimmi實際上你並沒有使用界面構建器將UITextViewDelegate連接到filesOwner,也可以通過編程方式設置,如textview.delegate = self;也可以將返回鍵設置爲從uitextview屬性檢查器完成 – 2012-07-24 06:18:41
- 1. UITextView resignFirstResponder不起作用
- 2. resignFirstResponder不工作?
- 3. Textview背景不起作用
- 4. Autosize textview不起作用
- 5. TextView OnTouch不起作用
- 6. Android TextView setText不起作用
- 7. TextView回車不起作用
- 8. UITextField resignFirstResponder不工作?
- 9. 使用Spannable的TextView - ellipsize不起作用
- 10. Android Textview選擇不起作用
- 11. 水平滾動Textview不起作用
- 12. TextView重力屬性不起作用
- 13. TextView alpha動畫不起作用
- 14. TextView setText()有時不起作用
- 15. Xamarin android textView滾動不起作用
- 16. Android TextView水平滾動不起作用
- 17. EditText和TextView上的setText不起作用
- 18. android textview設置高度不起作用
- 19. 片段中的Textview不起作用
- 20. 「textAllCaps = false」對於textview不起作用?
- 21. 創建新的TextView不起作用
- 22. android - Textview的重力不起作用
- 23. android:引力在TextView中不起作用
- 24. ScrollView在[textview resignFirstResponder]之後停止滾動
- 25. 在PopupWindow中更改TextView的TextView不起作用
- 26. resignFirstResponder不響應
- 27. resignFirstResponder
- 28. 的TextView和Button - 鼠標點擊作品,OnItemClick不起作用
- 29. TextView.setVisibility不起作用。
- 30. TabListener不起作用
你在哪裏使用resignFirstResponder? – Nitish 2012-07-24 05:15:20
在這個委託方法: - (void)textViewDidEndEditing:(UITextView *)textView { [textView resignFirstResponder]; } – Nims 2012-07-24 06:23:25
尋找pandey的解決方案。 – Nitish 2012-07-24 06:27:59