I am using AQGridView with Xib file. I have set the basic Project just as explained in the Video by Evadne Wu
. And i am moving to next Grid using expandFromRect
from ExpansionDemo and the Grid is loaded fine but whenever i click anywhere on the grid i get EXC_BAD_ACCESS
and exception is generated without any Log about the reason.
Also that the didSelectItemAtIndex
doesn't get called even though i have set the self.gridView.delegate = self;
Finally it is resolved. One thing that i haven't read Known Bugs while setting up AQGridView i.e. do not pile multiple animations on top of one another
that was the main reason i was facing the issue. So, while the grid was animating i blocked start of any other grid Animation and hence the issue was resolved