在关闭重复帖子之前,请相信我,我正在搜索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];
}


由于某些非常奇怪的原因,尽管我尝试了许多示例和不同方法,但我的代码无法正常工作。
有什么帮助吗?

最佳答案

从我的评论中回答(针对结束的问题):
右键单击textView和“新引用出口”,也许会有所帮助?

09-15 21:08