Skip to content

Instantly share code, notes, and snippets.

@odderlynat
Created January 28, 2012 06:26
Show Gist options
  • Save odderlynat/1693039 to your computer and use it in GitHub Desktop.
Save odderlynat/1693039 to your computer and use it in GitHub Desktop.
Loading a UITableViewCell From a Nib
cell = [[[SearchCellTop alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier] autorelease];
NSArray* objects = [[NSBundle mainBundle] loadNibNamed:@"SearchCellTop" owner:cell options:nil];
cell = [objects objectAtIndex:0];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment