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
Custom section headers documentation...
posted

Infragistics, 

Just an FYI

In your Developers Guide documentation help.infragistics.com/iOS/2014.2/ under IGGridView / Displaying Sections and Section Columns, it mentions 2 methods for displaying custom section headers and footers...

  • -(UIView*)gridView:(IGGridView*)gridView viewForHeaderInSection:(int)section;
  • -(UIView*)gridView:(IGGridView*)gridView viewForFooterInSection:(int)section;

But in the IGGridViewDelegate Protocol Reference, and the IGGridView.h header file, the section header method has this definition

  • - (UIView *)gridView:(IGGridView *)gridView viewForSectionHeader:(NSInteger)section

http://help.infragistics.com/iOS/2014.2/igapi/Protocols/IGGridViewDelegate.html#//api/name/gridView:viewForSectionHeader:

  • 40030
    Verified Answer
    Offline posted

    Hey Dave, 

    Thanks, those were the original API names, we just missed updating them. Basically what happened is it turns out that Apple has an internal API with those exact signatures, and when you went to submit your app, Apple's would issue a warning that you're using an internal API. They never actually rejected an app on it, but just so people didn't have to worry, we renamed the APIs. Its worth noting thought, that the original API's are still supported, they're just not publicly defined. 

    -SteveZ