Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
同等の方法はありますか
tableView:indexPathForCell
マックで?
ボタンが押された行を取得しようとしています。
ボタンに接続されたこのメソッドを使用してみてください。コードは、テーブル ビューのデリゲートであるクラスにある必要があります。
-(IBAction)buttonClick:(NSButton *)sender { NSInteger buttonRow = [self.tv rowForView:sender]; //tv is IBOutlet for the tableView NSLog(@"%ld",buttonRow); }