- How to save a UITableView's content as a PNG file?
- UIGraphicsBeginImageContext(self._tableView.contentSize);
- [self._tableView.layer renderInContext:UIGraphicsGetCurrentContext()];
- UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
- return UIImagePNGRepresentation(image);