背景がぼやけた UITableViewController をフォーム シートとして現在のコンテキストに表示するにはどうすればよいですか?
- (void)viewDidLoad {
self.tableView.backgroundColor = [UIColor clearColor];
self.tableView.backgroundView = [[UIVisualEffectView alloc] initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]];
}
で設定されたiPhoneで、フルスクリーンで正常に動作しますUIModalPresentationOverCurrentContext
modalPresentationStyle
ただし、iPad でフォーム シートとして表示する場合は、に設定する必要がありUIModalPresentationFormSheet
ます。
両方を設定するにはどうすればよいですか?