如何使用UITextField的用户输入添加带图像的新UITableViewCell?

时间:2013-05-28 01:46:32

标签: iphone xcode uitableview uitextfield

我变得越来越沮丧,因为我无法弄清楚如何让它发挥作用。 我一直在搜索和搜索,似乎没有任何东西可以帮助我实现我想做的事。

我正在尝试完成的任务:我正在尝试获取用户将使用顶部的UITextField键入的任务,以添加一个新单元格,并将其输入作为文本,并在其左侧显示一个复选框。当点击单元格时,我希望将复选框更改为带有复选标记的复选框,并且整个单元格将不透明度更改为50%。此外,当从左向右滑动时,我想让单元格弹出一个删除按钮。

我怎么能让这一切都发生?我目前只是使用Attribute Inspector将UITextField添加到.xib中,使其看起来像它一样。我还有一个工具栏,我也使用了属性检查器进行修改。

没有任何代码将这些连接到动作,它们只是位于.xib中。

这是我创建的渲染图像。 (我想要的是什么)

http://i.imgur.com/rTKnvud.png

以下是我目前在.xib中的Xcode中的内容。

http://i.imgur.com/wfcVOrY.png

先谢谢你, 雅各布

2 个答案:

答案 0 :(得分:0)

您需要以编程方式向单元格添加按钮或创建自定义单元格。当用户点击单元格或复选框时,您可以将按钮的图像更改为所选复选框。为了正确显示复选框,请使用NSMutableArray并使用以下代码。

注意

1. specialNeedsList is a array which I'm using to display data on cell.
2. selectedSpecialNeed is a Mutable Array which I'm using to store selected/checked values
3. I'm using checkbox button for UITableViewCell accessory view. IN your case code will be little bit different.

遵循本教程Get row for button tapped以及我的代码。你会明白这一点。 无论我在- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath做什么     你需要在UIButton的行动中做到这一点。

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    NSInteger returnValue = 1;
    return returnValue;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    NSInteger returnValue = 0;
    returnValue = ([self.specialNeedsList count] > 0) ? [self.specialNeedsList count]:0;
    return returnValue;
}

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

            UIButton * btnShare = [[UIButton alloc] initWithFrame:CGRectMake(0,0,30,30)];
            [btnShare setImage:[UIImage imageNamed:@"checkbox.png"] forState:UIControlStateNormal];
            [btnShare setImage:[UIImage imageNamed:@"checkboxChecked.png"] forState:UIControlStateHighlighted];
            [btnShare setImage:[UIImage imageNamed:@"checkboxChecked.png"] forState:UIControlStateSelected];
            [btnShare addTarget: self  action: @selector(accessoryButtonTapped:withEvent:)
               forControlEvents: UIControlEventTouchUpInside];

            cell.accessoryView = btnShare;
            [btnShare release];
        }
    NSString* subAreaOfStudy = [self.specialNeedsList objectAtIndex:indexPath.row];
    if (self.specialNeedsList && [self.specialNeedsList count] > 0) {
        [cell.textLabel setFont:[UIFont systemFontOfSize:15.0f]];
        cell.textLabel.text = [self.specialNeedsList objectAtIndex:indexPath.row];
    }
    BOOL isShared = ([self.selectedSpecialNeeds count] > 0 && ([self.selectedSpecialNeeds indexOfObject:subAreaOfStudy] != NSNotFound));

    UIButton* btnShare = (UIButton*)cell.accessoryView;
    btnShare.selected = isShared;
    [btnShare setNeedsDisplay];

    return cell;

}

- (void) accessoryButtonTapped: (UIControl *) button withEvent: (UIEvent *) event{

    NSIndexPath * indexPath;
    indexPath = [tblVSpecialNeeds indexPathForRowAtPoint: [[[event touchesForView: button] anyObject] locationInView:tblVSpecialNeeds]];
    if ( indexPath == nil )
        return;

    [self tableView:tblVSpecialNeeds accessoryButtonTappedForRowWithIndexPath:indexPath];
}

- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath{
    NSString *draft = [self.specialNeedsList objectAtIndex:indexPath.row];

    BOOL recordAlreadySelected = ([self.selectedSpecialNeeds indexOfObjectIdenticalTo:draft] != NSNotFound);
    if(recordAlreadySelected) {
        [self.selectedSpecialNeeds removeObject:draft];

    }
    else {
        [self.selectedSpecialNeeds addObject:draft];
    }
    [tblVSpecialNeeds reloadData];


}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (indexPath.row > [self.specialNeedsList count]-1) {
        [tableView deselectRowAtIndexPath:indexPath animated:YES];
        return;
    }
    [self tableView:tblVSpecialNeeds accessoryButtonTappedForRowWithIndexPath:indexPath];

}

答案 1 :(得分:0)

要在滑动时删除,请使用Tableview的委托方法:

  • (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath

    [arrAddData removeObjectAtIndex:indexPath.row];

    [tbldata reloadData];