UIActionSheet 和 UIAlertView 专注于 iPad

发布于 2024-10-21 19:01:46 字数 254 浏览 2 评论 0原文

我在 iPad 上使用 UIActionSheet 和 UIAlertView 时遇到一些问题 事实上,我使用alertView作为带有文本字段和按钮的弹出窗口来输入 日期,当我单击按钮时,包含我的 UIDatePicker 的 UIActionSheet 应该显示,它显示,但我没有焦点来选择日期 焦点仍然在alertview上,ActionSheet在后台 (但在 iPhone 上没有问题,工作正常)

是否需要为 iPad 添加一些代码?

感谢您的帮助

I have some troubles with UIActionSheet and UIAlertView on iPad
in fact, i use an alertView as a pop up with textfields and buttons to enter a
date, when i click on the button the UIActionSheet who contains my UIDatePicker is supposed to show, it shows but i don't have focus to pick a date
the focus is still on the alertview and the ActionSheet is in the background
(but on iphone there is no problem it works fine)

is there some code to add for the iPad?

Thanks for your help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

这个俗人 2024-10-28 19:01:46

在 AlertView 的 clickedButtonAtIndex 方法中,显式关闭 AlertView 并显示 ActionSheet。

使用;
- (void)dismissWithClickedButtonIndex:(NSInteger)buttonIndex 动画:(BOOL)动画并呈现操作表

,例如

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
[alertView dismissWithClickedButtonIndex:0 animated:NO];
if(buttonindex==1{
[self showActionSheet]
}
}

注意,对于 Iphone,您可能不需要关闭警报视图。

In the clickedButtonAtIndex method of your AlertView explicitly dismiss the alertView and show your ActionSheet.

using;
- (void)dismissWithClickedButtonIndex:(NSInteger)buttonIndex animated:(BOOL)animated and present the action sheet

e.g

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
[alertView dismissWithClickedButtonIndex:0 animated:NO];
if(buttonindex==1{
[self showActionSheet]
}
}

NB for Iphone you may not need to dismiss the alertView.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文