我知道有類似的問題,但thiere的回答沒有幫助我。我geuss我有一些其他的錯誤。功能textFieldShouldBeginEditing不叫
我有一個textView,我將它設置爲self,但不調用相關函數。
下面是代碼:
在.H:
@interface MyViewController : UIViewController<UITextFieldDelegate>
@property (retain, nonatomic) IBOutlet UITextField *nameField;
在.M:
...
@synthesize nameField;
...
-(void)viewWillAppear:(BOOL)animated{
[super viewWillAppear:animated];
nameField.delegate = self;
...
}
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField{
exitKeyboardButton.hidden = NO;
return YES;
}
你確定你已經連接在Interface Builder中'nameField'出口? – omz 2012-08-02 09:59:47
f @你怎麼知道的!? – Luda 2012-08-02 10:02:13
你工作正確,沒有連接,但沒有幫助。它仍然沒有響應 – Luda 2012-08-02 10:03:32