ユーザーがお気に入りのアイテムを保存できるように、tableviewCells にスター ボタンを作成しようとしています。
私はこれまでにこれを試しました。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
UIButton *CameraBreak=[UIButton buttonWithType:UIButtonTypeRoundedRect];
CameraBreak.frame=CGRectMake(260, 10, 60, 40);
CameraBreak.tag=indexPath.row;
[CameraBreak setImage:[UIImage imageNamed:@"first.png"] forState:UIControlStateNormal];
[CameraBreak addTarget:self action:@selector(starClicked::) forControlEvents:UIControlEventTouchUpInside];
[cell.contentView addSubview:CameraBreak];
cell.textLabel.text = [titles objectAtIndex:indexPath.row];
cell.textLabel.font = [UIFont fontWithName:@"Helvetica" size:15];
return cell;
}
問題は、viewDidLoad のボタンが次のように表示されることです。
しかし、テーブルをスクロールすると、ボタンは次のように変化します。
この動作の理由を知っている人はいますか? そして、どうすればこれを解決できますか?
アップデート
選択されていない:
選択済み: