How to rotate UITableViewController in iOS
How to rotate UITableViewController in iOS
– (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. table.transform = CGAffineTransformMakeRotation(-M_PI_2); table.frame = CGRectMake(0, 100, 320, 200); } -(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{ return 200; } -(UITableViewCell *)tableView:(UITableView *)tableView…
View On WordPress












