ボタンがクリックされたが動けなくなった場合、動的セル内のボタンのタイトルを変更しようとしています:
私は持っている:
- (IBAction)buttonWasPressed:(id)sender
{
static NSString *CellIdentifier = @"Cell";
NSIndexPath *indexPath =
[self.tableView
indexPathForCell:(UITableViewCell *)[[sender superview] superview]];
NSUInteger row = indexPath.row;
NSLog(@"row::%d",row);
ResultsCell *cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier cellForRowAtIndexPath:indexPath];
[cell.favoriteButton setTitle:@"favorited" forState:UIControlStateNormal];
}
それは私にまで機能NSLog(@"row::%d",row);
しますが、2番目の部分を正しくする方法がわかりませんか? 助言がありますか?