gpt4 book ai didi

objective-c - 如何将 tableview 单元格作为参数传递,并仅将图像加载到相应的 tableview 单元格(在 iOS 中单击照片按钮)

转载 作者:行者123 更新时间:2023-11-29 04:15:14 25 4
gpt4 key购买 nike

我有一个自定义表格 View 。我想将表格 View 单元格作为参数传递给函数。我正在使用 [cell.btnImages PerformSelector]。单击照片按钮时,它应该将图像加载到相应的表格 View 单元格。这可能吗?下面是代码。单击图像按钮时。我需要将单元格作为参数传递... enter image description here

 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *CellIdentifier = @"IpadTableViewCell";

IPadTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) {
NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"IpadTableViewCell" owner:nil options:nil];
for (id currentObject in topLevelObjects)
{
if ([currentObject isKindOfClass:[IPadTableViewCell class]])
{
cell = (IPadTableViewCell *)currentObject;

}
}
}

[cell.btnImages performSelector:@selector(imageButtonClicked:) onThread:nil withObject:cell waitUntilDone:nil];


return cell;
}



-(void)imageButtonClicked:(IPadTableViewCell *)tblCell
{
// opne image select dialog
CGFloat prevButtonXPosition = 17, pageButtonXPosition, pageButtonWidth = 120, pageButtonHeight = 130;

for (NSInteger i =1; i<= 9; i++) {
pageButtonXPosition = prevButtonXPosition ;
prevButtonXPosition = pageButtonXPosition + pageButtonWidth;
UIButton *pageButton = [UIButton buttonWithType:UIButtonTypeCustom];
[pageButton addTarget:self action:@selector(onClickImage:) forControlEvents:UIControlEventTouchUpInside];
[pageButton setFrame:CGRectMake(pageButtonXPosition, 5, pageButtonWidth, pageButtonHeight)];
[pageButton setBackgroundImage:[UIImage imageNamed:[NSString stringWithFormat:@"%i.png",i]] forState:UIControlStateNormal];
[pageButton setTag:i];
[cell.scrollView addSubview:pageButton];
}

UIButton *add=[UIButton buttonWithType:UIButtonTypeCustom];
[add addTarget:self action:@selector(onClickAdd:) forControlEvents:UIControlEventTouchUpInside];
[add setFrame:CGRectMake(prevButtonXPosition, 20, 80, 80)];
[add setBackgroundImage:[UIImage imageNamed:@"last.jpeg"] forState:UIControlStateNormal];
[add setTag:0];
[cell.scrollView addSubview:add];

[cell.scrollView setContentSize:CGSizeMake(prevButtonXPosition +80, 40)];
cell.selectionStyle = UITableViewCellSelectionStyleNone;

}

最佳答案

您已在 tableview 类中定义了 imageButtonClicked 方法,但您在 cell.btnImages 中调用了它。您应该在 btnImages 类中实现 imageButtonClicked 方法,或者在 self 而不是 cell.btnImages 中调用它。如果 btnImages 属于 UIButton 类,您应该这样做:

[cell.btnImages addTarget:self action:@selector(imageButtonClicked:) forControlEvents:UIControlEventTouchUpInside];

或者只是实现 UITableViewDelegate 方法:

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

关于objective-c - 如何将 tableview 单元格作为参数传递,并仅将图像加载到相应的 tableview 单元格(在 iOS 中单击照片按钮),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13803802/

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