Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

One of the new classes is which allows one to display items in a grid format similar to the Homescreen / iBooks / Pages layout.

Is there was a way to receive a touch event on a button that is on the UICollectionViewCell? Currently, my cell is created through an XIB file and added to the UICollectionView programatically. I'm looking for something similar to the Detail Diclosure Indicator on a UITableView.

After looking through Apple's documentation here, I don't see any methods that allow for something like that, but I am positive there's a way to do it.

How can one add a button to a UICollectionViewCell and get the indexPath of the cell when the button is tapped?

Are there any tutorials or links out there that could be helpful? iOS 6 is fairly new so I haven't found much. Thanks in advance.

share|improve this question

1 Answer

up vote 0 down vote accepted

Simplest way I found was with the following:

UICollectionViewCell *cell = ...

UIButton *button = (UIButton*)[cell viewWithTag:200];
[button addTarget:self action:@selector(buttonAction:) forControlEvents:UIControlEventTouchUpInside];

...

-(void)buttonAction:(UIButton*)button {
    UICollectionViewCell *cell = (UICollectionViewCell*)button.superview.superview;
    NSIndexPath *path = [self.collectionView indexPathForCell:cell];
    [self collectionView:self.collectionView didSelectItemAtIndexPath:path];
}
share|improve this answer
Just one thing to add: button.superview is the contentView. So it needs to be replaced with sender.superview.superview – Thyraz Oct 8 '12 at 18:30
@Thyraz Could you explain a little more? I just found a problem with the selection of cells using this code and I thing that your comment may lead to a fix. That would be much appreciated! – RazorSharp Oct 8 '12 at 21:49
2  
@RazorSharp normally you shouldn't add suviews for a cell directly to the cell, but to it's contentView instead. This also happens automatically when you set up a cell in Interface Builder and drop subviews on it. Cause of that, calling superview on the button won't give you the cell, you will get the contentView instead. The cell is the superview of the contentview. So calling superview twice on the button should give you the cell. – Thyraz Oct 10 '12 at 11:44
12  
-1 This answer makes me cringe. sender.superview.superview? That is ridiculously fragile, and would break if UIKit ever decided to add another view in between the cell and the contentView (which they are free to do). And view tags? Don't get me started on view tags. What you should be doing is subclassing UICollectionViewCell, adding the button as a subview in there, and then the cell can keep a pointer to the button, be the target of the button, etc. That is orders of magnitude cleaner. – Dave DeLong Oct 27 '12 at 15:02
1  
@DaveDeLong the problem here is not "cell can keep a pointer to the button" as you said. The problem is how the button knows which cell it belongs to. – Flow Apr 18 at 7:02
show 2 more comments

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.