我正在尝试制作一个表格视图,用户可以在其中输入数据。当您创建新联系人时,我希望它看起来与 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;
}