コード:
HDComposeViewController *vc = [[HDComposeViewController alloc] init];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
nav.modalPresentationStyle = UIModalPresentationFullScreen;
[self presentModalViewController:nav animated:YES];
現在のモーダル ビューは、デバイスが回転している間は回転できません。に変更modalPresentationStyle
するとUIModalPresentationFormSheet
、動作します!!!
HDComposeViewController は既に回転デリゲートを実装しています:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return YES;
}
- (BOOL)shouldAutorotate
{
return YES;
}
何か間違っていることでも?ありがとう。