0

cellaccessory タイプのチェック マークを処理する方法を知っています。ここでは、チェック マークが付いているテーブルセル全体のチェックを外すボタンが必要ですか? ここに私のコードがあります。コーディングを手伝ってください。

- (void)viewDidAppear:(BOOL)animated
{
UIBarButtonItem *rest = [[UIBarButtonItem alloc]initWithTitle: @"RESET" style:      UIBarButtonItemStyleBordered target: self action: @selector(uncheckCells)];
UIBarButtonItem *flexibleSpace = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
[toolbar setItems:[NSArray arrayWithObjects:rest,flexibleSpace,flexibleSpace,home,nil]];
[self.navigationController.view addSubview:toolbar];
[self.tableView reloadData];
}

ここに私の関数のコード

-(void)uncheckCells//unchecking function
{
[self.tableView reloadData];//HERE WHAT SHOULD I DO
}
-(void)hom
{
[self dismissModalViewControllerAnimated:YES];
}
- (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];
 }
cell.textLabel.text = [ar objectAtIndex:indexPath.row];    
cell.selectionStyle=UITableViewCellSelectionStyleNone;
if(cell.accessoryType==UITableViewCellAccessoryCheckmark)
{
cell.backgroundColor=UIColorFromRGB(0xd05818);
cell.detailTextLabel.text=@"packed";
cell.detailTextLabel.textColor=[UIColor cyanColor];
}
else
{
cell.backgroundColor=[UIColor whiteColor];
cell.detailTextLabel.text=@""; 
}
return cell;
[self.tableView reloadData]; 
}
(void) deselect
{   
[self.tableView deselectRowAtIndexPath:[self.tableView indexPathForSelectedRow]      animated:YES];

}
(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath     *)indexPath
{
[tableView reloadData];    
[tableView deselectRowAtIndexPath:indexPath animated:NO];
printf("User selected row %d\n", [indexPath row] + 1);
if ([[tableView cellForRowAtIndexPath:indexPath] accessoryType] ==      UITableViewCellAccessoryCheckmark)
{
[[tableView cellForRowAtIndexPath:indexPath]setAccessoryType:UITableViewCellAccessoryNone];
}
else
    [[tableView cellForRowAtIndexPath:indexPath]setAccessoryType:UITableViewCellAccessoryCheckmark];
    [self performSelector:@selector(deselect) withObject:nil afterDelay:0.0f];
[tableView reloadData];
}
4

2 に答える 2

0

メソッドにチェックマークを付けている場合didSelectRowAtIndexPath:。AreloadDataはあなたのために働きます。

たとえば。

セレクター付きのボタンがあるとしましょうuncheckCells

-(void)uncheckCells
{
   [self.tableView reloadData];
}

これでうまくいくはずです。

編集:あなたの状態を追加cell.accessoryType = UITableViewCellAccessoryNone;しますif (cell == nil)

またはこれを行います:

-(void)uncheckCells
{
for (int section = 0, sectionCount = self.tableView.numberOfSections; section < sectionCount; ++section) {
        for (int row = 0, rowCount = [self.tableView numberOfRowsInSection:section]; row < rowCount; ++row) {
            UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:row inSection:section]];
            cell.accessoryType = UITableViewCellAccessoryNone;
            cell.accessoryView = nil;
        }
    }
}

私はそれがうまくいくことを願っています。

于 2012-08-18T05:56:18.993 に答える
-1

コードを読むと、テーブル ビュー自体にチェックマークを設定しているように見えます。

実際にすべきことは、セルにチェック マークが付いているかどうかをデータ ソースに格納し、tableView:cellForRowAtIndexPath:メソッドでこの情報を使用してチェック マークを表示するかどうかを指定することです。

そして、選択解除メソッドはデータソースを通過し、テーブルビューにチェックマークがあるかどうかを示すマーカーを設定解除する必要があります。

そうすれば、テーブルビューをスクロールするとき、または[tableView reloadData];データストアを呼び出すだけで、チェックマークを表示するかどうかを決定するために使用されます。

于 2012-08-18T07:01:43.120 に答える