a button in UITableviewCell [closed]

不打扰是莪最后的温柔 提交于 2019-12-06 05:03:36

Create a button programmatically and add it to the sub view of the cell. Set tag as the indexPath.row value and add target to the button. Now in the target you could simply use :

 -(void)buttonInsideCellIsPressed : (id)sender{
   UIButton *button = (UIButton *)sender; 
   NSIndexPath *indexPath = [NSIndexPath indexPathForRow:button.tag inSection:0];
   CustomCell *cell = (CustomCell*)[myTable cellForRowAtIndexPath:indexPath];

   // Here you may change the background image for the button for rollover or anything 
    }

In my opinion setting the tag is a poor way. It restricts better usage for the Tag elsewhere in the application.

NSIndexPath *indexPath = [self.tableView indexPathForCell:(UITableViewCell *)[[sender superview] superview]];

Using this approach you can actually retrieve the IndexPath for the cell.

This is what worked for me...

- (void)yourButton:(id)sender{

    NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint: currentTouchPosition];
    CustomCellClass *cell = (CustomCellClass *)[self.tableView cellForRowAtIndexPath:indexPath];

    NSString *myFooText = cell.cellLabelFoo.text;
}

Create a button programmatically and add it to cell subview.

You can associate an IBAction with a button programaticly without using nib at all using this code:

[myButton addTarget:self action: @selector(buttonPressed) 
                 forControlEvents:UIControlEventTouchUpInside];

The crash may be due to following reasons

  1. You have added a view controller to your cell and releasing it. Hence when tapped on button it is not able to find the controller to handle the tap
  2. You have not specified a valid selector when you are adding the button callback for tap event
  3. You may be accessing data which is NULL

If you post some code of how you create your cell, you will be able to get more information on it.

vijay adhikari

you need to make a method and pass (id )sender to it; try this below ..hope this works..this you write where you crested the button and call method..

[myButton addTarget:self action: @selector(buttonPressed:) 
                 forControlEvents:UIControlEventTouchUpInside];



-(void)buttonPressed:(id)sender{

nslog(@"hi");
}

hope this works

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!