0

我越来越沮丧,因为我不知道如何让它发挥作用。我进行了搜索和搜索,似乎没有任何东西可以帮助我完成我想做的事情。

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

我将如何让这一切发生?我目前只是使用属性检查器将 UITextField 添加到 .xib 中,使其看起来像它的样子。我还有一个顶部的工具栏,我也使用 Attributes Inspector 对其进行了修改。

没有任何代码可以将这些与操作联系起来,它们只是位于 .xib 中。

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

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

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

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

提前谢谢你,雅各布

4

2 回答 2

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.

按照本教程获取点击按钮的行以及我的代码。你会得到实现这一点的想法。无论我在做什么, - (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];

}
于 2013-05-28T02:07:50.487 回答
0

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

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

    [arrAddData removeObjectAtIndex:indexPath.row];

    [tbldata 重载数据];

于 2013-05-28T06:28:46.657 回答