在将帖子关闭为重复之前,相信我,我搜索了 2 天,但仍然一无所获。我会尽量说清楚:
我有一个带有 textview 的视图。我需要在 textview 上自动设置焦点,这样键盘才会出现。
PostView.h
@interface PostView : UIViewController{
UITextView *txtPesto;
}
@property (nonatomic,retain) IBOutlet UITextView *txtPesto;
@end
PostView.m
#import "PostView.h"
@implementation PostView
@synthesize txtPesto;
- (void)viewDidLoad
{
[super viewDidLoad];
[txtPesto becomeFirstResponder];
}
由于一些非常奇怪的原因,我的代码无法正常工作,尽管我尝试了许多示例和不同的方法。有什么帮助吗?