Skip to content

Instantly share code, notes, and snippets.

@mackato
Created September 7, 2010 08:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mackato/568021 to your computer and use it in GitHub Desktop.
Save mackato/568021 to your computer and use it in GitHub Desktop.
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
if (newSectionIndex != nil)
[self.tableView insertSections:newSectionIndex
withRowAnimation:UITableViewRowAnimationFade];
else
[self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath]
withRowAnimation:UITableViewRowAnimationFade];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment