この投稿で提案を実装しようとしています: Pass an argument to selector to pass an @selector
argument to a UIButton
in a UITableViewCell
using objc_setAssociatedObject
and objc_getAssociatedObject
. 私がコーディングした方法では、作成/ロードされた最後のセルが何であれ、常に行を渡すことになります。これが私のコードです:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
UILabel *mainLabel;
soundButton=[UIButton buttonWithType:UIButtonTypeCustom];
if (cell == nil){
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
soundButton.tag = 33;
[soundButton addTarget:self action:@selector(soundButtonAction) forControlEvents:UIControlEventTouchUpInside];
[soundButton setFrame:CGRectMake(210,3,68, 37)];
[soundButton setBackgroundImage:[UIImage imageNamed:@"musicNote"] forState:UIControlStateNormal];
[cell.contentView addSubview:soundButton];
} else {
soundButton = (UIButton *)[cell.contentView viewWithTag:33];
}
objc_setAssociatedObject(soundButton, "IndexPath", indexPath, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
return cell;
}
-(void)soundButtonAction
{
NSIndexPath *ip = objc_getAssociatedObject(soundButton, "IndexPath");