3
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {


    data_web *current_data ;
    current_data = [[structured_question data_webs] objectAtIndex:indexPath.row];
    NSString *is_submited = [NSString stringWithFormat:@"%@",[current_data content_2]];

    if ([is_submited compare:@"Y"] == NSOrderedSame)
        cell.accessoryType = UITableViewCellAccessoryCheckmark;
    else
        cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;


}

上記は私のスクリプトです。スクリプトに何か問題があり、解決策が見つかりません。

4

1 に答える 1