我呈現與UIModalTransitionStyleCoverVertical一個modalViewController然後,當用戶選擇這個modalView的一排,我提出另一個modalView如下:顯示兩個模態的視圖控制器相繼與它們之間的不同的過渡樣式
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
CenterViewController *nextView = [[CenterViewController alloc] init];
nextView.modalPresentationStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:nextView animated:YES];
[nextView release];
}
問題是,無論我爲此第二個模式視圖控制器初始化哪種類型的過渡樣式模式,過渡樣式都保持爲UIModalTransitionStyleCoverVertical。
我是否缺少相關的內容? 在此先感謝。
什麼錯誤!你是對的 – Samui 2012-04-04 21:02:17