Created
July 10, 2014 13:54
-
-
Save ratkins/d35e9ca0e033da915fb8 to your computer and use it in GitHub Desktop.
Appending table rows.
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
[self.billingEmailSection.contacts addObject:@""]; | |
NSArray *blankRows = @[ | |
[NSIndexPath indexPathForItem:[self.billingEmailSection.contacts count] inSection:4] | |
]; | |
[self.tableView insertRowsAtIndexPaths:blankRows withRowAnimation:UITableViewRowAnimationBottom]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment