self.delegate = self;这样做有什么不对? 这样做的正确方法是什么?
谢谢,Nir。
代码:
(UITextField*)initWith:(id)sender:(float)X:(float)Y:(float)width:(float)hieght:(int)textFieldTag {
if (self = [super initWithFrame:CGRectMake(X, Y,width, hieght)]) {
finalText = [[NSMutableString alloc] initWithString:@""];
senderObject = sender;
self.textColor = [UIColor blackColor];
self.font = [UIFont systemFontOfSize:17.0];
self.backgroundColor = [UIColor whiteColor];
self.autocorrectionType = UITextAutocorrectionTypeNo;
self.keyboardType = UIKeyboardTypeDefault;
self.returnKeyType = UIReturnKeyDone;
self.clearButtonMode = UITextFieldViewModeWhileEditing;
self.tag = textFieldTag;
self.delegate = self;
[sender addSubview:self];
}
return self;
}
注释:这是一个文本字段,当我将委托设置为另一个对象(self.delegate = mainView)时,一切正常,但是我必须实现委托方法mainView,我想把它们放在self(我创建的uiTextField类)中。如果我设置self.delegate = self,我会得到一个textField,但键盘没有出现。
答案 0 :(得分:12)
见这个帖子
基本上,单击您自己作为委托的UITextField时“冻结”的原因是respondsToSelector
正在调用自己 - >无限递归。
UITextField是唯一的AFAIK。您通常可以使用类作为自己的委托,没有特别的问题。对于UITextField,您必须创建一个实际的委托(当然,可以在UITextField上调用它是委托的方法。请注意避免保留循环,即使您使用ARC )。