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
65
Getting the column header view
posted

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 

Parents
  • 40030
    Verified Answer
    Offline posted

    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

Reply Children