我正在使用 UITextView,如果文本在键盘下方展开,则它根本无法滚动,如下图所示。因此,如果文本与键盘对齐或在键盘下方,我需要某种滚动来向下滚动视图。我一直在寻找类似的示例/教程,但没有找到任何适合我的项目的好示例。
我将在我的 .h 文件中发布我如何在下面实现我的 UITextView* commentField。从这里我该怎么办?如果您可以具体使用示例代码,我们将不胜感激!/问候
http://tinypic.com/view.php?pic=kck6t&s=6
ReportViewController.h 文件:
@interface ReportViewController : MLUIViewController <MLReportErrorDelegate, UITextFieldDelegate, UIGestureRecognizerDelegate>
{
IBOutlet UITextView *commentField;
IBOutlet UITextField *emailField;
}
@property (nonatomic, retain) UITextView *commentField;
ReportViewController.m 文件:
- (void) textViewShouldBeginEditing:(UITextView *)commentField
{
???????????????????????
}