gpt4 book ai didi

ios - 按钮单击 TableView 以更改我的 TableView 单元格中的图像

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:59:44 26 4
gpt4 key购买 nike

我有一个带有一个按钮的表格 View 单元格。单击具有一种方法的单元格按钮来检查是否按钮标记等于 indexPath.row。然后我试图改变形象。但它没有显示。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:
(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"FilterTableViewCell";
FilterTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
cell.cellBtn.tag = indexPath.row;
cell.radioImage.tag = indexPath.row;
[cell.cellBtn addTarget:self action:@selector(ButtonClicked:) forControlEvents:UIControlEventTouchUpInside];
return cell;
}

-(void)ButtonClicked:(UIButton*)sender
{
int rowNum = [(UIButton*)sender tag];
NSIndexPath* indexPath = [NSIndexPath indexPathForRow:_currentSelectedIndex inSection:0];
FilterTableViewCell *cell = [_tableView cellForRowAtIndexPath:indexPath];
if (sender.tag == rowNum) {
cell.radioImage.image = [UIImage imageNamed:@"selected.png"];
} else {
cell.radioImage.image = [UIImage imageNamed:@"unselected.png"];
}

}

这里的按钮图片没有变化。我需要的是,每当我单击任何特定单元格图像需要更改的单元格时,其他单元格应显示未选择的图像。每当我点击任何图像被更改为选定图像的单元格时。我需要获取特定的单元格值,例如文本标签名称、子文本标签名称。

我怎样才能做到这一点。这里有什么问题?

更新:

    -(void)ButtonClicked:(UIButton*)sender
{
int rowNum = [(UIButton*)sender tag];
FilterTableViewCell *cell = [self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:rowNum inSection:0]];
if (sender.tag != _currentSelectedIndex) {
cell.radioImage.image = [UIImage imageNamed:@"selected.png"];
} else {
cell.radioImage.image = [UIImage imageNamed:@"unselected.png"];
}
}

最佳答案

添加这两个 tableView 的委托(delegate):

- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath
{
FilterTableViewCell *cell = [_tableView cellForRowAtIndexPath:indexPath];
cell.radioImage.image = [UIImage imageNamed:@"unselected.png"];
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
FilterTableViewCell *cell = [_tableView cellForRowAtIndexPath:indexPath];
cell.radioImage.image = [UIImage imageNamed:@"selected.png"];
}

然后将 ButtonClicked 更改为:

-(void)ButtonClicked:(UIButton*)sender
{
int rowNum = [(UIButton*)sender tag];
NSIndexPath* indexPath = [NSIndexPath indexPathForRow:_currentSelectedIndex inSection:0];
if (sender.tag == rowNum) {
[_tableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionNone];
}
}

关于ios - 按钮单击 TableView 以更改我的 TableView 单元格中的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54730874/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com