Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1935
Identify a cell path when using IGGridViewStyleSingleCellPaging
posted

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]

  • 1935
    Verified Answer
    Offline posted

    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.