I want to have landscape orientation for my app.
So I have done the following:
*in Info.plist
file I've set this:
And then in every ViewController.m of my application I've done this:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
if (interfaceOrientation == UIInterfaceOrientationLandscapeRight)
return YES;
else return NO;
}
What should I do for the tabel to look right.Thanks