在關閉帖子之前重複,相信我,我正在搜索這2天,但仍然沒有。 我會盡量做到儘可能清晰:以編程方式專注於UITextView不起作用
我有一個textview.View需要在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];
}
對於一些非常奇怪的原因,我的代碼不能正常工作,雖然我已經嘗試了許多樣品和不同的方法。 有什麼幫助嗎?
您是否在xib中連接了'IBOUtlet'? –
我已經將TextView的委託拖動到文件的Owner.Yes。 – Theodoros80
請將'[txtPesto becomeFirstResponder];'添加到viewDidAppear方法中。 –