Hi,
I need the column header view to display a UIPopoverController whose arrow points to the appropriate column header.Getting any other cell is easy using one of the methods which takes an NSIndexPath as an argument.
Best regards,
Danny
Hi Danny,
Getting a HeaderCell is actually just as easy.
We have a constant that we use for the row and section index of a header cell:
kHeaderRowIndex
So, you use it like this;
IGCellPath* path = [IGCellPath pathForRow:kHeaderRowIndex inSection:kHeaderRowIndex inColumn:theColumnIndexYouWant];
-SteveZ
How would you do that in C#?
Pretty much the exact same code. The trick is that all constants are in a class called IGGridViewConstants.
IGCellPath path = IGCellPath.CreateCellPath (IGGridViewConstants.kHeaderRowIndex, IGGridViewConstants.kHeaderRowIndex, 1);