Skip to content

Instantly share code, notes, and snippets.

@nickfox
Created March 21, 2011 08:00
Show Gist options
  • Select an option

  • Save nickfox/879163 to your computer and use it in GitHub Desktop.

Select an option

Save nickfox/879163 to your computer and use it in GitHub Desktop.
CGRect imageFrame = CGRectZero;
imageFrame.size.height = 150;
imageFrame.size.width = 200;
imageFrame.origin.x = 59;
imageFrame.origin.y = 20;
UIImageView *imageView = [[UIImageView alloc] initWithFrame:imageFrame];
imageView.image = [UIImage imageNamed:@"tomatoes.jpg"];
[self.tableView.tableHeaderView addSubview:imageView];
[imageView release];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment