如何通过名称和标记获取textField的值 - 目标c

时间:2014-06-03 12:54:50

标签: ios objective-c object

我得到了一个用户可以输入姓名和年龄的视图:screenshot 这些字段具有以下名称和标记值1。

@property (weak, nonatomic) IBOutlet UITextField *name;
@property (weak, nonatomic) IBOutlet UITextField *amount;

如果用户创建了更多textFields,它们也将被命名为* name und * age并链接到ViewController。第二对字段的值将计为2,第三对字段的值为3。

我想要一个与textField对和count i ++一样长的数组; 获取引用名称和标记的值的语法是什么?我用Google搜索并找到了以下解决方案,如果标签是唯一的,那么这种解决方案是有效的,在我的情况下并非如此。如何通过元素名称扩展此选择?

UITextField *textField = (UITextField*)[self.view viewWithTag:1];
NSString *amount1 = textField.text;

3 个答案:

答案 0 :(得分:1)

我建议将这一切全部转移到UITableView。有许多方法可以通过使用自定义UITableViewCell并调整表格的背景颜色,分隔符插入等来修改其外观。

查看您喜欢的用于创建自定义单元格的教程,并将其UITextField作为@property个变量。创建一个新的UITableViewController而不是现有的控制器和#import您的自定义单元类。

<强> TableViewController.h

@interface TableViewController : UITableViewController <UITextFieldDelegate>
{
    NSMutableArray *namesArray;
    NSMutableArray *amountsArray;
    UITextField *activeField;
}

<强> TableViewController.m

// only relevant code displayed
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [namesArray count] + 1;  // extra row for the "Add Row" row
}

- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
    return 100.0f;
}

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
    UIButton *addDataButton = [UIButton buttonWithType:UIButtonTypeCustom];
    [addDataButton setTitle:@"Add Data to Array"];
    [addDataButton addTarget:self action:@selector(addDataToArray) forControlEvents:UIControlEventTouchUpInside];
    // customize your button as needed

    UITableViewHeaderFooterView *footerView = [[UITableViewHeaderFooterView alloc] initWithFrame:CGRectMake(0, 0, tableView.frame.size.width, 100)];
    [footerView addSubview:addDataButton];
    return footerView;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    if(indexPath.row == [namesArray count]) // the last row
    {
        UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@""];
        cell.textLabel.text = @"Add Row";
        return cell;
    }

    static NSString *reuseIdentifier = @"YourReuseID";  // use whatever you set in your custom cell class
    MyCustomCell *cell = (MyCustomCell *)[tableView dequeueReusableCellWithIdentifier:reuseIdentifier];

    if(!cell)
    {
        cell = [[[NSBundle mainBundle] loadNibNamed:@"MyCustomCell" owner:self options:nil] objectAtIndex:0];
    }

    cell.nameField.text = [namesArray objectAtIndex:indexPath.row];
    cell.nameField.tag = indexPath.row;
    cell.nameField.delegate = self;
    cell.amountField.text = [amountsArray objectAtIndex:indexPath.row];
    cell.amountField.tag = indexPath.row + 1000000; // to make sure it doesn't have the same tag as your nameField
    cell.amountField.delegate = self;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
    if(indexPath.row = [namesArray count])
    {
        [namesArray addObject:@""];
        [amountsArray addObject:@""];
        [tableView reloadData];
    }
}

- (void)textFieldDidBeginEditing:(UITextField *)textField
{
    activeTextField = textField;
}

- (BOOL)textFieldShouldEndEditing:(UITextField *)textField
{
    if(textField.tag < 1000000)
    {
        [namesArray replaceObjectAtIndex:textField.tag withObject:textField.text];
    }
    else
    {
        [amountsArray replaceObjectAtIndex:textField.tag - 1000000 withObject:textField.text];
    }
}

- (void)addDataToArray
{
    [activeTextField resignFirstResponder];
    // add your data as needed. The first row's name/amount will be available in [namesArray objectAtIndex:0] and [amountsArray objectAtIndex:0]
}

答案 1 :(得分:0)

您可以使用带有值的标签:1000 + i浇注名称和2000 + j浇筑量。

然后,要获取名称关联的值,请使用tag = tagOfName + 1000。

答案 2 :(得分:0)

您需要具有唯一标识文本字段的逻辑。

如下所述设置名称和金额的标签。

第n行的名称textfield的标记应为(n * 2)+ 1,其中n = 0,1,2 ..... n-1

第n行的文本字段数量标记应为(n * 2)+ 2,其中n = 0,1,2 ..... n-1

您可以使用以下语句获取与textfield相关联的值

UITextField *nameNTextField = (UITextField*)[self.view viewWithTag:(n * 2) + 1]; //where n=0,1,2.....n-1
NSString *nameN = nameTextField.text;

UITextField *amountNTextField = (UITextField*)[self.view viewWithTag:(n * 2) + 2]; //where n=0,1,2.....n-1
NSString *amountN = nameTextField.text;