Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an UITableView,where i"m getting a customUITableViewCell with an UILabel and an UIButton,i want to change the Label text value for particular row after pressing the button which in same row. Please help me,i'm new in iPhone.

share|improve this question

1 Answer

Please check whether you mapped action fro your button and continue with this..

-(void)yourButtonClicked:(id)sender {
  CustomCell *clickedCell = [[sender superView]superView];
  NSindexPath *indexPath = [YourTableViewObject indexPathForCell:clickedCell];
  NSLog(@"%d %d",indexPath.section,indexPath.row);  
}

Here you are getting row for your clicked cell..

Then you can change your label text easily.. by

clickedCell.yourLabel.text = @"Your string";
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.