Created
September 7, 2010 08:12
-
-
Save mackato/568021 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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