3

UIButtonセルを動的に追加し、変更方法UIButtonのクリックで画像を変更しUIBarButtonItem ますか?

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"Display"] ; 
    [cell.textLabel setText:[NSString stringWithFormat:@"%@" ,[arrItemList objectAtIndex:indexPath.row]]];

    UIButton *btnCheck = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    btnCheck.frame = CGRectMake(6.0f, 2.0f, 32.0f, 25.0f);
    [btnCheck setTitle:@"" forState:UIControlStateNormal]; 
    [btnCheck addTarget:self action:nil forControlEvents:UIControlEventTouchUpInside];
    [cell addSubview:btnCheck]; 

    return cell;
}
//Here IBAction for Bar Button Item
//when ever user click on BarButton then set the image of all btnCheck
-(IBAction)bbtnCheck:(id)sender
{
}
4

2 に答える 2

1

あなたの質問が、バーボタンがクリックされたときにテーブルのすべてのセルでボタンの画像を変更する方法であると仮定すると、次のことをお勧めします。

tableView:cellForRowAtIndexPath 内に、以下を追加します。

btnCheck.tag = MY_BUTTON_TAG_NUMBER;

次に、バー ボタン項目がクリックされると、表示されているセルをループし、ボタンのタグを使用して識別し、その画像を更新します。

-(IBAction)bbtnCheck:(id)sender {
 for (UITableViewCell *cell in self.tableView.visibleCells) {
   UIButton *button = [cell viewWithTag:MY_BUTTON_TAG_NUMBER];
   [button setImage:[UIImage imageNamed:SOME_NEW_IMAGE] forState:UIControlStateNormal];
  }
}
于 2013-01-01T09:19:44.183 に答える
0

そのbbtnCheckで、そのtableViewのインスタンス(つまり特定のセル)を取得する必要があります。次に、その特定のセルにボタンを追加できるようになったら、これを確認してください。

-(IBAction)bbtnCheck:(id)sender
{
     NSIndexPath *indexpath = [NSIndexPath indexPathForRow:YourRow inSection:YourSection]; // you have to set Row and Section according to your requirement
     UITableViewCell *cellNew = [self.tblComments cellForRowAtIndexPath:indexpath];
    for (UIButton *btn in [cellNew.contentView subviews]) 
    {
        if ([btn isKindOfClass:[UIButton class]]) 
        {
            [btn setImage:[UIImage imageNamed:@"yourImage.png"] forState:UIControlStateNormal];
        }
    }    
}
于 2013-01-01T08:53:59.880 に答える