方法:
MapMain_identifyResult *resultsVC = [[MapMain_identifyResult alloc] initWithNibName:@"MapMain_identifyResult" bundle:nil];
self presentModalViewController:resultsVC animated:YES];
[resultsVC release];
用法很簡單,只要將要推進來的View建立起來,再利用presentModalViewController方法即可。
若要將利用上述方法推進來的View退掉,就可以使用dismissModalViewControllerAnimated方法。
[self dismissModalViewControllerAnimated:YES];
但若是你的程式的架構比較複雜,比如說:在window上有超過一層的View,可能會在推進View的時候造成方向上的錯亂,則可以利用設定modalPresentationStyle為UIModalPresentationCurrentContext來解決。
resultsVC.modalPresentationStyle = UIModalPresentationCurrentContext;
除了UIModalPresentationCurrentContext以外,還有三種PresentationStyle:
1. UIModalPresentationFormSheet:view以視窗的方式出現,很像網頁上js遮照的效果。
2. UIModalPresentationFullScreen:整頁覆蓋。
3. UIModalPresentationPageSheet:直的時候是FullScreen效果,橫的時候是FormSheet效果。
除了控制出現的區塊,也可以控制出現的動畫,利用設定modalTransitionStyle完成。
resultsVC.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
利用這些View的切換,就可以使App的界面更有變化。
沒有留言:
張貼留言