UITableViewCell的contentView中的UITextField的值获取有几种方法
推荐于2016-06-11 · 知道合伙人数码行家
可以叫我表哥
知道合伙人数码行家
向TA提问 私信TA
知道合伙人数码行家
采纳数:25897
获赞数:1464978
2010年毕业于北京化工大学北方学院计算机科学与技术专业毕业,学士学位,工程电子技术行业4年从业经验。
向TA提问 私信TA
关注
展开全部
UITableViewCell的contentView中的UITextField的值获取有几种方法,本人简单总结一下。
1. 获取UITextField所以Cell的NSIndexPath,知道了NSIndexPath就知道了这个UITextField是干什么的了。
可以在
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
//get cell
UITableViewCell *cell = [UITableViewCell ][[textField superview] superview];
NSIndexPath *indexPath = [tableView indexPathForCell:cell];
}
或
- (void)textFieldDidEndEditing:(UITextField *)textField
{
//get cell
UITableViewCell *cell = (UITableViewCell *)[[textField superview] superview];
NSIndexPath *indexPath = [tableView indexPathForCell:cell];
}
中得知道UITextField中text是哪一个数据结构的值,前一个是实时的,后一个是失去焦点时一次性的。
2。第二种方法与上面第一个有点类似也是实时的,
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { NSInteger row = [indexPath row]; static NSString *CellIdentifier = @"CellIdentifier"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; cell.selectionStyle = UITableViewCellSelectionStyleNone; } cell.textLabel.text = [_passwordArray objectAtIndex:row]; CGRect textFieldRect = CGRectMake(0.0, 0.0f, 215.0f, 31.0f); UITextField *theTextField = [[UITextField alloc] initWithFrame:textFieldRect]; theTextField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter; theTextField.returnKeyType = UIReturnKeyDone; theTextField.secureTextEntry = YES; theTextField.clearButtonMode = YES; theTextField.tag = row; theTextField.delegate = self; //此方法为关键方法 [theTextField addTarget:self action:@selector(textFieldWithText:) forControlEvents:UIControlEventEditingChanged]; switch (row) { case 0: theTextField.placeholder = @"请输入旧密码"; break; case 1: theTextField.placeholder = @"请输入新密码"; break; case 2: theTextField.placeholder = @"请再次输入新密码"; break; default: break; } cell.accessoryView = theTextField; [theTextField release]; return cell; } - (void)textFieldWithText:(UITextField *)textField { switch (textField.tag) { case 0: self.theOldPassword = textField.text; break; case 1: self.theNewPassword = textField.text; break; case 2: self.theTwiceNewPassword = textField.text; break; default: break; } }
1. 获取UITextField所以Cell的NSIndexPath,知道了NSIndexPath就知道了这个UITextField是干什么的了。
可以在
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
//get cell
UITableViewCell *cell = [UITableViewCell ][[textField superview] superview];
NSIndexPath *indexPath = [tableView indexPathForCell:cell];
}
或
- (void)textFieldDidEndEditing:(UITextField *)textField
{
//get cell
UITableViewCell *cell = (UITableViewCell *)[[textField superview] superview];
NSIndexPath *indexPath = [tableView indexPathForCell:cell];
}
中得知道UITextField中text是哪一个数据结构的值,前一个是实时的,后一个是失去焦点时一次性的。
2。第二种方法与上面第一个有点类似也是实时的,
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { NSInteger row = [indexPath row]; static NSString *CellIdentifier = @"CellIdentifier"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; cell.selectionStyle = UITableViewCellSelectionStyleNone; } cell.textLabel.text = [_passwordArray objectAtIndex:row]; CGRect textFieldRect = CGRectMake(0.0, 0.0f, 215.0f, 31.0f); UITextField *theTextField = [[UITextField alloc] initWithFrame:textFieldRect]; theTextField.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter; theTextField.returnKeyType = UIReturnKeyDone; theTextField.secureTextEntry = YES; theTextField.clearButtonMode = YES; theTextField.tag = row; theTextField.delegate = self; //此方法为关键方法 [theTextField addTarget:self action:@selector(textFieldWithText:) forControlEvents:UIControlEventEditingChanged]; switch (row) { case 0: theTextField.placeholder = @"请输入旧密码"; break; case 1: theTextField.placeholder = @"请输入新密码"; break; case 2: theTextField.placeholder = @"请再次输入新密码"; break; default: break; } cell.accessoryView = theTextField; [theTextField release]; return cell; } - (void)textFieldWithText:(UITextField *)textField { switch (textField.tag) { case 0: self.theOldPassword = textField.text; break; case 1: self.theNewPassword = textField.text; break; case 2: self.theTwiceNewPassword = textField.text; break; default: break; } }
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询