You supporting only limited orientations either landscape or portrait. But you calling different orientation in your view controller.
You can see the following image with supported Orientation. It support only landscape right and landscape left.So if i call portrait it will show the error as like you. So if you want to support both orientation then change it in the summary.

See this answer for more detail.
Hope it helps.
EDIT
So you have to put this code in your viewcontroller
- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
return UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscapeLeft | UIInterfaceOrientationMaskLandscapeRight;
}