How can I get a cell path when using the grid in IGGridViewStyleSingleCellPaging mode?
I believe I tried 'pathForCellAtPoint:' but if I recall, it always gave me a path of [0,0,0]
I got it. I was using 'pathForCellAtPoint' wrong because I was providing a point always at (10,10) for example, and assumed that the gridview would determine which cell that point was on. Turns out I needed to use the scrollview's contentOffset in order to provide the appropriate point, which then gave me the correct path.