I've incorporated the really awesome AQGridView into my project but am having a small problem,

The only delegate method i find is - (void) gridView:(AQGridView *)gridView didSelectItemAtIndex:(NSUInteger)index;

Which only detects a select, meaning - if i select a cell and then want to "deselect" a cell i just clicked, i would have to click on another cell, or click twice on that cell to perform a deselection.

If i could just detect a touch instead i could just trigger the selection, but since it saves the touch status, the problem i just described occurs.

I would love to hear from you guys if you have any info on this or suggestions :)

Kind regards, Shai.

link|improve this question

1  
You could tell the grid view to deselect the item when it is selected. In - (void) gridView:(AQGridView *)gridView didSelectItemAtIndex:(NSUInteger)index; Call deselectItemAtIndex:index animated:animated – Jonathan. Aug 14 '11 at 9:47
So simple! thank you ! :) You should write it as an answer and i'll accept it :) – Shai Mishali Aug 14 '11 at 9:57
feedback

1 Answer

up vote 0 down vote accepted

You could tell the grid view to deselect the item when it is selected. In

- (void) gridView:(AQGridView *)gridView didSelectItemAtIndex:(NSUInteger)index; 

Call

[gridView deselectItemAtIndex:index animated:animated];
link|improve this answer
Perfect, so simple , feel kinda stupid i didn't think of it myself :) – Shai Mishali Aug 14 '11 at 11:57
feedback

Your Answer

 
or
required, but never shown

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