4

我从这里有一个视图控制器,我得到了一个弹出窗口。从这个弹出窗口中,我将视图呈现为模态视图。其中有一个文本视图。当编辑开始时,整个模态视图向上移动(这通常是人们想要的)。但我不希望那样。有什么办法,我可以阻止我的模态视图在键盘显示和隐藏上上下移动?

4

1 回答 1

4

If I guessed correctly then you need to set yourviewControler.modalPresentationStyle=UIModalPresentationPageSheet;

instead of what you are probably using right now yourviewControler.modalPresentationStyle=UIModalPresentationFormSheet;

于 2013-02-18T02:01:23.847 回答