获取UITableView每行中不同的UITextField输入的内容

转自:http://blog.sina.com.cn/s/blog_9ca91e4a0100xlvu.html


获取UITableView每行中不同的UITextField输入的内容  此博文包含视频 (2012-02-20 11:05:47)转载

标签: 杂谈 分类: iPhone

- (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;

    }

}

//个人觉得上面的写法会有reuse问题,可以使用的时候尝试下
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值