Hello everybody! I have a question.
I want to add Button with title "Edit" into cell.
UIButton *editButton;
editButton.frame = CGRectMake(..., ..., ..., ...);
[editButton addTarget:self action:@selector(editClicked
forControlEvents: UIControlEventTouchUpInside];
[cell.contentView addSubview:editButton]];
How to get NSIndexPath of cell when i click on editButton?
Thank you