各テーブルビューセルに動的なボタン数の機能を備えたアプリに取り組んでいます。ボタンの数は行ごとに異なります。
画像をクリックするためのボタンを与えたいです。しかし、私はそれを取得することができないので、誰でも私が選択されたボタンの変化する画像を取得するのを手伝ってくれるでしょう。
各テーブルビューセルに動的なボタン数の機能を備えたアプリに取り組んでいます。ボタンの数は行ごとに異なります。
画像をクリックするためのボタンを与えたいです。しかし、私はそれを取得することができないので、誰でも私が選択されたボタンの変化する画像を取得するのを手伝ってくれるでしょう。
タグを yourButton に追加indexPath.row
し、- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
メソッドで割り当てる必要があります。
UIButton *yourButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[yourButton setTitle:@"Button" forState:UIControlStateNormal];
[yourButton addTarget:self action:@selector(buttonSelected:) forControlEvents:UIControlEventTouchUpInside];
yourButton.tag=indexPath.row;
yourButton.frame = CGRectMake(5, 5, 100, 30);
[cell addSubview:yourButton];
その後、buttonSelected:
メソッドを定義します。
-(void)buttonSelected:(id)sender{
UIButton *button = (UIButton *)sender;
NSLog(@"buttonSelectd: %d",button.tag);
//implement your code what you want.
}
お役に立てると思います。