iOS4.0开发——Modal a Controller的不同呈现类型modalPresentationStyle

来源:互联网 发布:海南话翻译软件 编辑:程序博客网 时间:2024/05/18 02:58

ModalViewController可以有不同的呈现类型(modalPresentationStyle),列举如下:

1.UIModalPresentationFullScreen// 全屏模式。即弹出窗口占满整个屏幕,在portrait模式和landscape模式下都一样。

2.UIModalPresentationFormSheet// 会将窗口缩小,使之居于屏幕中间。在portraitlandscape下都一样,但要注意landscape下如果软键盘出现,窗口位置会调整。

3.UIModalPresentationPageSheet// portrait时是FullScreen,在landscape时和FormSheet模式一样。

4.UIModalPresentationCurrentContext // (没用过)

// 例:在类ControllerA中弹出类ControllerBUITableViewController

// 在类ControllerA对应的方法中实现

ControllerB *cb = [[[ControllerB alloc] initWithNibName:nil bundle:nil] autorelease];

cb.modalPresentationStyle = UIModalPresentationFormSheet;

[self presentModalViewController:cb animated:YES];


原创粉丝点击