tableView滚到最后一行

dispatch_async(dispatch_get_main_queue(), ^{

       [_tableview scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:self.totalCount>EMAIL_COUNT?EMAIL_COUNT-1:self.totalCount-1 inSection:0] atScrollPosition:UITableViewScrollPositionBottom animated:YES];

    });

原文地址:https://www.cnblogs.com/piaojin/p/5016139.html