0

私はアプリケーションを開発していますが、1 つのことにこだわっています。自分で問題を解決しようとしましたが、理解できませんでした。誰かがこれを解決する方法を知っているなら、私を助けてください。

すべての行にチェックボックスがあるUITableViewを1つ作成しました。チェックボックスをタップすると、そのチェックボックスのみが選択されますが、現在は最後のチェックボックスのみが選択されています。現在のコードを以下に示します。変更が必要なものがあればお知らせください。

ありがとう。

- (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] autorelease];
    }

    cell.textLabel.text = [selectPlayer objectAtIndex:indexPath.row];
    checkboxButton = [[UIButton alloc]initWithFrame:CGRectMake(0, 8, 25, 25)];
    checkboxButton.tag = indexPath.row;
    [checkboxButton setTitle:nil forState:UIControlStateNormal];
    [checkboxButton addTarget:self action:@selector(checkboxButton:)forControlEvents:UIControlEventTouchUpInside];

    [checkboxButton addSubview:checkImage];
    cell.accessoryView = checkboxButton; 
    return cell;
}

-(void)checkboxButton:(id)sender {
    NSIndexPath *indexPath = [selectTableView indexPathForCell:(UITableViewCell *)[[sender superview] superview]];
    switch (indexPath.section) {
        case 0:
            switch (indexPath.row) {
                case 0:
                    [checkImage setImage:[UIImage imageNamed:@"checkbox-checked.png"]];
                    NSLog(@"button pressed at section %d and %d row", indexPath.section, indexPath.row);
                    break;

                case 1:
                    //[checkImage setImage:[UIImage imageNamed:@"checkbox-checked.png"]];
                    NSLog(@"button pressed at section %d and %d row", indexPath.section, indexPath.row);
                    break;

                default:
                    break;
            }
            break;

        default:
            break;
    }
}
4

2 に答える 2

0

あなたの問題は、正しい方法を使用していないことだと思います。実装する必要があると思います

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *) indexPath{ }

ここには、選択した行の indexPath と tableView のインスタンスがあります。あとは、TableViewCell をインスタンス化してチェックマークをオンにするだけです。

于 2012-04-18T14:48:26.543 に答える