给tableView添加一行

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:_dataArray.count-1 inSection:0];
[_tableView insertRowsAtIndexPaths:@[indexPaht] withRowAnimation:UITableViewRowAnimationFade];


自动滑动到最后一行
[_tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionBottom animated:YES];

你可能感兴趣的:(iOS)