我有一个自定义单元格。像这样
有一些按钮,如 LIKE、COMMENT、SHARE。
单击这些按钮时,我想要方法中的 indexPath.row 。
我做了这样的协议
@protocol Cell_StreamCellDelegate
@required
-(void)like;
-(void)comment;
-(void)share;
@end
当 CELL.m 中的方法如下所示时,我调用了它们
-(IBAction)likePressed:(id)sender{
[delegate like];
}
-(IBAction)commentPressed:(id)sender{
[delegate comment];
}
-(IBAction)sharePressed:(id)sender{
[delegate share];
}
但我无法获取 indexPath.row。我想要一个在特定索引上的对象。
谢谢