UIActionSheet 和 UIAlertView 专注于 iPad
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 AlertView 的 clickedButtonAtIndex 方法中,显式关闭 AlertView 并显示 ActionSheet。
使用;
- (void)dismissWithClickedButtonIndex:(NSInteger)buttonIndex 动画:(BOOL)动画并呈现操作表
,例如
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