1

我正在尝试制作一个表格视图,用户可以在其中输入数据。当您创建新联系人时,我希望它看起来与 iPhone 上的联系人应用程序几乎相同。

我在下面发布了我的代码。

在标题文本旁边,我希望用户输入一个标题,在描述文本旁边,我希望用户输入一个描述,在时间旁边,我希望用户输入一个时间,然后在位置文本旁边,我希望用户输入一个位置。

我完全不知道如何做到这一点,任何帮助将不胜感激!

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier];
        cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

    }

    if(indexPath.row == 0) {
        cell.textLabel.text = @"Title";
    }
    else if(indexPath.row == 1) {
        cell.textLabel.text = @"Description";
    }
    else if(indexPath.row == 2) {
            cell.textLabel.text = @"Time:";
    }
    else if(indexPath.row == 3) {
            cell.textLabel.text = @"Location:";
    }

    // Configure the cell...

    return cell;
}
4

2 回答 2

2

您可以使用 UILabel 和 UITextfield 创建自定义单元格,然后重用自定义单元格

使用自定义单元格cellForRowAtIndexPath:如下

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier = @"Cell";
    LoginCell *cell = (LoginCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"LoginCell" owner:self options:nil];
        cell = [nib objectAtIndex:0];
        [cell setSelectionStyle:UITableViewCellSelectionStyleNone];
    }

    if (indexPath.row == 0) {
        cell.txtBox.placeholder = @"example@gmail.com";
        cell.lbllabel.text = @"Email";
    }
    else {
        cell.txtBox.placeholder = @"Required";
        cell.lbllabel.text = @"Password";
    }
    cell.Tag = indexPath.row;

    return cell;
}

从文本框中检索值

NSIndexPath *indexEmail = [NSIndexPath indexPathForRow:0 inSection:0];
LoginCell *cellEmail = (LoginCell *)[loginTableView cellForRowAtIndexPath:indexEmail];
NSString *strEmail = cellEmail.txtBox.text;

NSIndexPath *indexPassword = [NSIndexPath indexPathForRow:1 inSection:0];
LoginCell *cellPassword = (LoginCell *)[loginTableView cellForRowAtIndexPath:indexPassword];
NSString *strPassword = cellPassword.txtBox.text;

示例项目

于 2013-06-10T04:38:30.867 回答
0

使用您需要的框架创建 UITextView 对象的实例,然后按以下方式将其添加到单元格的 contentView 子视图中

[cell.contentView addSubview:textView];

希望这可以帮助

于 2013-06-10T02:37:39.513 回答