Skip to content

Instantly share code, notes, and snippets.

@aquarius
Created May 10, 2012 05:48
Show Gist options
  • Save aquarius/2651284 to your computer and use it in GitHub Desktop.
Save aquarius/2651284 to your computer and use it in GitHub Desktop.
GMGridView Header View
CGRect screenRect = [[UIScreen mainScreen] applicationFrame];
UIView* headerView = [[UIView alloc] initWithFrame:CGRectMake(0.0, 0.0, screenRect.size.width, 54.0)];
headerView.contentMode = UIViewContentModeCenter;
self.gridView.gridHeaderView = headerView;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment