在iPad中必须填写密码时,例如在Dropbox应用中。我知道我必须创建自己的视图,但是这个视图是在UIPopoverController中吗?如果是这样,有人可以告诉我如何创建弹出框来放置我的密码视图,所以它看起来像这样:
提前致谢!
答案 0 :(得分:0)
这不是一个popovercontroller。
你可以为此提供modalViewController,将modalPresentationStyle保持为UIModalPresentationFormSheet
urviewcontroller.modalPresentationStyle=UIModalPresentationFormSheet;
[self presentModalViewController:urviewcontroller animated:YES];
答案 1 :(得分:0)
我也在研究passlok视图,我使用了UIPopoverController和自定义键盘。这是它的样子: