Skip to content

Instantly share code, notes, and snippets.

@enzo-yang
Last active December 15, 2015 21:59
Show Gist options
  • Select an option

  • Save enzo-yang/5329814 to your computer and use it in GitHub Desktop.

Select an option

Save enzo-yang/5329814 to your computer and use it in GitHub Desktop.
让TableView从下往上显示
// tableView创建后
CGAffineTransform transform = CGAffineTransformMakeRotation(M_PI);
tableView.transform = transform;
// 创建tableViewCell时:
CGAffineTransform transform = CGAffineTransformMakeRotation(M_PI);
cell.transform = transform;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment