別の別の uiviewcontroller(WelcomeScreen) から uiviewControllor(ExchangeToday) を呼び出します。しかし、エラーは次のとおりです。
2013-09-10 11:57:24.005 exchangerate[3234:c07] 警告: ウィンドウ階層にないビューで表示しようとしています!
私のコードは次のとおりです。
@interface ExchangeToday : UIViewController <UIScrollViewDelegate, UITableViewDelegate, UITableViewDataSource>
UIViewController *second = [[ExchangeToday alloc] initWithNibName:@"ExchangeToday_iPhone" bundle:nil];
second.modalPresentationStyle = UIModalPresentationFormSheet;
second.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[self presentModalViewController:second animated:YES];
修正方法は?